From http://www.w3schools.com (Copyright Refsnes Data)
JavaScript Functions
The decodeURI() function is used to decode a URI encoded with the encodeURI() function.
| decodeURI(uri) |
| Parameter | Description |
|---|---|
| uri | Required. The URI to be decoded |
ExampleDecode a URI after encoding it:
The output of the code above will be:
Try it yourself » |
JavaScript Functions
From http://www.w3schools.com (Copyright Refsnes Data)