Skip to main content
Converts a string from one encoding to another. A character set (or encoding) is the way text is stored as bytes, and text written in one encoding can show up as garbled characters when read with another. You tell this step which encoding the value is currently in and which one you want it in. A handy trick is converting to ASCII//TRANSLIT, which replaces accented and special characters with their closest plain-ASCII equivalent instead of dropping them.

Fields

Sample data

FieldValue
In charsetUTF-8
Out charsetASCII//TRANSLIT
Input:
{ "name": "Crème brûlée" }
Output:
{ "name": "Creme brulee" }