Unescape Function
Main Menu
Description
Decodes a string encoded with the Escape function.

Syntax

Unescape(charString)

Arguments charString
Required. String expression to be decoded.

Remarks
The Unescape function returns a string (in Unicode format) that contains the contents of charString. ASCII character set equivalents replace all characters encoded with the %xx hexadecimal form. Characters encoded in %uxxxx format (Unicode characters) are replaced with the Unicode character with hexadecimal encoding xxxx.

related to
Escape


Main Menu