Navigator 2.0, Internet Explorer 3.0
unescape(s)
The string that is to be decoded or "unescaped."
A decoded copy of s.
The unescape() function is a built-in part of JavaScript; it is not a method of any object.
unescape() decodes a string encoded with escape(). It creates and returns a decoded copy of s. It decodes s by finding and replacing character sequences of the form %xx, where xx is two hexadecimal digits. Each such sequence is replaced by the single character represented by the hexadecimal digits in the Latin-1 encoding.
Thus, unescape() decodes the string:
Hello%20World%21
to:
Hello World!
See escape() for more information on this encoding and decoding technique.
file: /Techref/language/java/script/definitive/refp_416.htm, 5KB, , updated: 2019/10/14 15:00, local time: 2024/11/8 10:10,
18.227.46.74:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/Techref/language/java/script/definitive/refp_416.htm"> [Chapter 21] Reference: unescape()</A> |
Did you find what you needed? |