Microsoft JScript
unescape Method
Language Reference
Version 1

See Also Applies To


Description
Decodes String objects encoded with the escape method.
Syntax
unescape(charstring)

The charstring argument is a String object to be decoded.

Remarks
The unescape method returns a new String object 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.


Comments