Greek Tonos/Diaeresis Remover

Strips accent (τόνος) and diaeresis (διαλυτικά) from Greek text

Remove the monotonic accent (τόνος) and the diaeresis (διαλυτικά) from modern Greek text, turning ά into α and ϊ into ι, for unaccented normalization, search keys, filenames, or case-folded comparison. Runs locally in your browser.

What marks does this remove?

It removes the monotonic accent (τόνος), the single acute mark used in modern Greek, and the diaeresis (διαλυτικά), the two dots used to show a vowel is pronounced separately. ά becomes α, ή becomes η, and ϊ becomes ι.

Modern Greek uses two diacritics: the τόνος (a single acute accent marking the stressed syllable) and the διαλυτικά (diaeresis, two dots showing a vowel is pronounced on its own). For search, sorting, slugs, or comparison you often want the bare letters. This tool strips both marks.

How it works

The tool relies on Unicode normalization. It decomposes each character into its base letter plus separate combining marks (NFD form), removes the combining tonos and diaeresis code points, and recombines:

"ά"  → "α" + ́  → remove ́  → "α"
"ϊ"  → "ι" + ̈  → remove ̈  → "ι"
"ΐ"  → "ι" + ̈ + ́ → remove both → "ι"

Because it targets only the accent and diaeresis combining marks, the base vowel, its case, and every consonant are preserved exactly. Punctuation, Latin characters, numbers, and spacing pass through unchanged.

Tips and example

  • Καλημέρα becomes Καλημερα; προϊστάμενος becomes προισταμενος.
  • The result is ideal as a normalized search key: a user typing αθηνα then matches Αθήνα after both are stripped and case-folded.
  • For URL slugs, combine this with lowercasing and a transliteration step so the final slug is plain ASCII.
  • Stripping accents is not the same as transliteration — the text stays in Greek letters, just without the marks.