A RetroSearch Logo

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

Search Query:

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

decodeURI ยท WebPlatform Docs

decodeURI Summary

Gets the unencoded version of an encoded Uniform Resource Identifier (URI).

Syntax
decodeURI( URIstring )
Examples

The following code first encodes a URI component and then decodes it.

var uriEncode = encodeURIComponent ("www.Not a URL.com");
 var uriDecode = decodeURIComponent(uriEncode);

 document.write (uriEncode);
 document.write ("<br/>");
 document.write (uriDecode);

 
 
 
Remarks

The required URIstring argument is a value representing an encoded URI.

Use the decodeURI function instead of the deprecated unescape function.

The decodeURI function returns a string value.

If the URIString is not valid, a URIError occurs.

Applies To : Global Object

See also 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