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.
urlDecode(string)
string
1
urlDecode(https://ninox.com?Name=Frank%20B%C3%B6hmer)
Result: https://ninox.com?Name=Frank Böhmer
urlEncode
, which converts a given string into a URL-compliant string based on the ASCII character set.Last modified 9mo ago