urlDecode

To decode a given string from a URL-compliant format into text

This function will convert a string from URL-compliant format into plain text based on the ASCII character set.

Syntax

urlDecode(string)

Return

string

Examples

urlDecode(https://ninox.com?Name=Frank%20B%C3%B6hmer)

Result: https://ninox.com?Name=Frank BΓΆhmer

See also

http, which sends an HTTP request.

urlEncode, which converts a given string into a URL-compliant string based on the ASCII character set.

Last updated