Converts special characters that are encoded in a URL back to their original form.
UrlDecode(CharacterExpression)
Where:
CharacterExpression
Attribute, variable, constant, or character expression that contains/provides the encoded URL to be decoded. It must be based on the Character, Varchar, or LongVarchar data type.
Type Returned:
Character
Generators: .NET, .NET Framework, Java, Angular, Android, Apple
A URL may contain special characters such as spaces, punctuation marks, and other non-alphanumeric characters. These special characters are encoded, the UrlDecode function takes a string corresponding to an encoded URL and decodes it, converting it back to its original form. For example, the "%20" becomes a space and the "%2C" becomes a comma.
&EncodedUrl="https://www.example.com/search?query=my%20search%20term"
&DecodedUrl = UrlDecode(&EncodedUrl) //The returned value is "https://www.example.com/search?query=my search term"
UrlEncode function