Transliterate a Unicode string to a human-readable ASCII identifier.

Parameters:
Columns to unidecode:
List of columns containing Unicode text that you want to transliterate.
Error handling:
Defines the strategy to handle characters that cannot be transliterated:
ignore: Non-transliterable characters are removed.strict: Raises an error when a character cannot be transliterated.replace: Replaces unknown characters with ? or a user-defined symbol.preserve: Keeps the original characters unchanged.New Column Name Prefix:
A prefix added to the names of the newly created transliterated columns.
Example: If the input column is Original_Text and the prefix is Transliterated_,
the result will be Transliterated_Original_Text.
This action converts Unicode strings in the specified columns to human-readable ASCII characters using transliteration. It is useful for normalizing text from various languages to a common ASCII format.

ID, Original_TextignoreTransliterated_
See the following screenshot for an example:

ignore or replace modes for best performance on unknown characters.