JavaScript decodeURI() Function
THE WORLD'S LARGEST WEB DEVELOPER SITE

JavaScript decodeURI() Function

❮ JavaScript Global Functions

Example

Decode a URI after encoding it:

var uri = "my test.asp?name=ståle&car=saab";
var enc = encodeURI(uri);
var dec = decodeURI(enc);
var res = enc + "<br>" + dec;
Try it Yourself »

Definition and Usage

The decodeURI() function is used to decode a URI.

Tip: Use the encodeURI() function to encode a URI.


Browser Support

Function
decodeURI() Yes Yes Yes Yes Yes

Syntax

decodeURI(uri)

Parameter Values

Parameter Description
uri Required. The URI to be decoded

Technical Details

Return Value: A String, representing the decoded URI

❮ JavaScript Global Functions