NFKC (recommended): Compatibility normalization followed by canonical composition. This is the option that turns bold, italic, circled, full-width and superscript Unicode characters back into plain text. For example:
Input: Fancy to plain: ð“—ð“®ð“µð“µð“¸ ð”¹ð• ð•ð•• ð•€ð•¥ð•’ð•ð•šð•”
Output: Fancy to plain: Hello Bold Italic
NFC: Canonical composition. It combines a base letter and its combining accent into a single precomposed character. For example, Resume written with a standalone combining acute accent becomes Résumé:
Input: Resumé
Output: Résumé
NFD: Canonical decomposition. It splits precomposed letters into a base letter plus a combining mark. For example:
Input: Café étudiant
Output: Café étudiant
NFKD: Compatibility decomposition. Like NFKC, but it keeps decomposed letters split apart (it does not recompose them). It converts roman numerals, circled numbers, ligatures and vulgar fractions to their plain equivalents:
Input: Ⅷ ①ff ½ ©
Output: VIII 1 ff 1⁄2 ©
Load an example: Adds a short sample of fancy, circled and full-width text to the Input textarea so you can try the tool instantly.
Upload a file: Loads the content of a plain text file from your device into the Input textarea.
Copy result: Click the Copy link above the textareas to copy the normalized text to your clipboard.
Download: Saves the normalized text as a .txt file on your device.
Clear the text: Empties both the Input and Output textareas so you can start over.