A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://webplatform.github.io/docs/javascript/unescape below:

unescape ยท WebPlatform Docs

unescape Summary

Deprecated

The deprecated unescape() function decodes a string that is usually encoded with the escape function.

Syntax
unescape(str)
str
Required. A String to be decoded
Examples
unescape("webplatform"); 
unescape("%FCmlaut"); 
unescape("%u65E5%u672C%u8A9E"); 
Remarks

All characters encoded with the % xx hexadecimal form are replaced by their ASCII character set equivalents.

Characters encoded in %u xxxx format (Unicode characters) are replaced with the Unicode character with hexadecimal encoding xxxx.

Notes

Do not use the unescape function to decode URIs. Use decodeURI and decodeURIComponent functions instead.

This function is deprecated and not recommended for use in new projects. Use with caution.

See also Related articles Deprecated Other articles Attributions

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4