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.

Syntax

urlEncode(string)

Return

string

Examples

"https://ninox.com?Name=" + urlEncode("Frank BΓΆhmer")

Result: https://ninox.com?Name=Frank%20B%C3%B6hmer

See also

http, which sends an HTTP request.

urlDecode, which decodes a given string from a URL-compliant format into text.

Last updated