urlEncode
To convert a given string into a URL-compliant string based on the ASCII character set
This function will convert plain text based on the ASCII character set into a URL-compliant format.
urlEncode(string)
string
1
"https://ninox.com?Name=" + urlEncode("Frank Böhmer")
Result: https://ninox.com?Name=Frank%20B%C3%B6hmer
Last modified 1yr ago