url_decode()

Learn how to use the url_decode() function to convert an encoded URL into a regular URL representation.

The function converts an encoded URL into a regular URL representation.

For more information about URL encoding and decoding, see Percent-encoding.

Syntax

url_decode(encoded_url)

Parameters

NameTypeRequiredDescription
encoded_urlstring✔️The encoded URL to decode.

Returns

URL (string) in a regular representation.

Example

let url = @'https%3a%2f%2fwww.bing.com%2f';
print original = url, decoded = url_decode(url)

Output

originaldecoded
https%3a%2f%2fwww.bing.com%2fhttps://www.bing.com/