Possible Duplicate:
How to decode Unicode escape sequences like “\u00ed” to proper UTF-8 encoded characters?
Which PHP function can decode string
foo\u0040foo.com
to
foo@foo.com
How it works?
Thanks for any help!
Possible Duplicate:
How to decode Unicode escape sequences like “\u00ed” to proper UTF-8 encoded characters?
Which PHP function can decode string
foo\u0040foo.com
to
foo@foo.com
How it works?
Thanks for any help!
If it's only ever going to be that one specific character, you could just do a simple str_replace('\u0040','@',$string)
.