Uri.EscapeDataString
Encodes special characters in accordance with RFC 3986.
function (data
as text) as text
Encodes special characters in the input
data
according to the rules of RFC 3986.Uri
Encode the special characters in "+money$".
Uri.EscapeDataString("+money$")
"%2Bmoney%24"
Last modified 4yr ago