Diacritic Stripper

Remove all accent marks: café becomes cafe, naïve becomes naive

Ad placeholder (leaderboard)

Diacritics are the accent marks added to letters, like the acute in café or the cedilla in façade. This tool removes every one of them, reducing accented letters to their plain base form so the text becomes pure ASCII.

How it works

The process relies on Unicode normalisation:

1. Normalise the string to NFD (canonical decomposition)
   é  →  e + ◌́   (base letter + combining acute U+0301)
2. Delete all combining marks in the range U+0300 – U+036F
   leaving just the base letters

In NFD form an accented character is stored as its base letter followed by a separate combining mark, so deleting the marks cleanly strips the accents without touching the underlying letters.

Example and tips

Crème brûlée à la française becomes Creme brulee a la francaise. Note this only removes separable combining marks: a few characters such as the German ß or the Scandinavian ø are single letters, not base-plus-accent, so they survive — use a transliterator if you need those mapped too.

Ad placeholder (rectangle)