From http://www.w3schools.com (Copyright Refsnes Data)
JavaScript Functions
The unescape() function decodes a string encoded with escape().
| unescape(string) |
| Parameter | Description |
|---|---|
| string | Required. The string to be decoded |
Note: The unescape() functions should not be used to decode URIs. Use decodeURI() functions instead.
ExampleEncode and decode a string:
The output of the code above will be:
Try it yourself » |
JavaScript Functions
From http://www.w3schools.com (Copyright Refsnes Data)