This documentation is archived and is not being maintained.
unescape Method
Visual Studio 2010
Returns as decoded string from a String object encoded with the escape method.
function unescape(charString : String) : String
The unescape method returns a string value that contains the contents of charString. All characters encoded with the %xx hexadecimal form are replaced by their ASCII character set equivalents.
Characters encoded in %uxxxx format (Unicode characters) are replaced with the Unicode character with hexadecimal encoding xxxx.
Note |
|---|
The unescape method should not be used to decode Uniform Resource Identifiers (URI). Use decodeURI and decodeURIComponent methods instead. |
Show:
Note