Convert accented characters to their plain base letters — café → cafe, naïve → naive, résumé → resume. It is handy for URL slugs, file names, search keys, usernames, and any system that only accepts plain ASCII.
How it works
The tool applies Unicode NFD normalization to your text. NFD decomposes each precomposed accented character into its base letter followed by one or more separate “combining” diacritical marks — so é becomes e + ´. The tool then removes every combining mark (the Unicode range U+0300–U+036F), leaving just the base letters. Characters that have no decomposed form in Unicode, such as ł, ø, and ß, are left as-is rather than guessed at, so nothing is mapped incorrectly. Everything runs locally in your browser.
Example
Input:
Crème Brûlée à la Mode — Señor Muñoz
Output:
Creme Brulee a la Mode — Senor Munoz
| Input | Output |
|---|---|
| café | cafe |
| naïve | naive |
| résumé | resume |
| Ångström | Angstrom |
| Łódź | Łodz |
All processing happens in your browser and nothing is transmitted to any server.