Hi: I have a string encoded by Escape in VBScript:
The Escape function returns a string (in Unicode format) that contains the contents of charString. All spaces, punctuation, accented characters, and other non-ASCII characters are replaced with %xx encoding, where xx is equivalent to the hexadecimal number representing the character. Unicode characters that have a value greater than 255 are stored using the %uxxxx format http://msdn.microsoft.com/en-us/library/h3607h29%28VS.85%29.aspx.
How do i decode the string in PHP?
Thanks very much.