Remove Accents & Diacritics

Strip accent marks to get plain ASCII-friendly text.

Ad placeholder (leaderboard)
Enjoying the tools? Go Pro for £4.99 (one-time) and remove all ads — forever, on this device. Remove ads — £4.99

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
InputOutput
cafécafe
naïvenaive
résuméresume
ÅngströmAngstrom
ŁódźŁodz

All processing happens in your browser and nothing is transmitted to any server.

Ad placeholder (rectangle)