Skip to main content
Turns HTML entity codes back into the real characters they stand for. HTML entities are the escaped codes that web systems use to safely store special characters, for example & for an ampersand or < for a less-than sign. Use this when a product title or description comes out of a web shop with these codes in it and you need clean, readable text in your target system. This is the opposite of encoding HTML entities.

Fields

This mapper has no settings. It always decodes the whole value.

Sample data

FieldValue
(none)decodes HTML entities back to characters
Input:
{ "title": "Tom & Jerry <Special>" }
Output:
{ "title": "Tom & Jerry <Special>" }