JavaScript unescape() Function
Example
Encode and decode a string:
var
str = "Need tips? Visit W3Schools!";
var
str_esc = escape(str);
document.write(str_esc + "<br>")
document.write(unescape(str_esc))
Try it Yourself »
Definition and Usage
The unescape() function was deprecated in JavaScript version 1.5. Use decodeURI() or decodeURIComponent() instead.
The unescape() function decodes an encoded string.
Browser Support
Function | |||||
---|---|---|---|---|---|
unescape() | Yes | Yes | Yes | Yes | Yes |
Syntax
unescape(string)
Parameter Values
Parameter | Description |
---|---|
string | Required. The string to be decoded |
Technical Details
Return Value: | A String, representing the decoded string |
---|
❮ JavaScript Global Functions