Skip to main content
Decodes a URL encoded string into plain text. In a web address certain characters are not allowed and get escaped into codes such as %20 for a space or %26 for an ampersand. Use this when a value arrives with those escape codes in it and you want the readable text back. It is the opposite of the Format to URL encoded mapper. Unlike the other parsers, this one returns plain text rather than a structured object, since a URL encoded value is just an escaped piece of text.

Fields

This mapper has no settings to configure. Point it at the encoded text you want to decode and it does the rest.

Sample data

FieldValue
(no settings)
Input:
{
    "payload": "Wool%20scarf%20%26%20belt"
}
Output:
{
    "payload": "Wool scarf & belt"
}