The Hungarian Diacritic Remover converts accented Hungarian text into plain ASCII, replacing every accented vowel with its base letter. It is built for URLs, file names, database keys, and legacy systems that cannot store Hungarian accents — and it correctly handles the double-acute vowels that trip up generic accent strippers.
How it works
The tool uses a fixed character table that maps each of the nine Hungarian accented vowels to its base letter, preserving case: á→a, é→e, í→i, ó→o, ö→o, ő→o, ú→u, ü→u, ű→u (and their uppercase forms). Every other character — spaces, punctuation, digits, and unaccented letters — passes through unchanged, and the tool reports how many diacritics it removed.
The double-acute catch
Hungarian has two long vowels written with a double-acute accent, ő and ű, which are different letters from the dieresis-marked ö and ü. Many accent-removal tools only know the common Western European accents and silently leave ő and ű in place, producing broken output. This tool maps both explicitly, so the result is fully ASCII.
Árvíztűrő tükörfúrógép → Arvizturo tukorfurogep
őszi ünnep Győrben → oszi unnep Gyorben
Tips and notes
- Case is preserved, so the output is suitable for case-sensitive identifiers.
- Only vowels carry accents in Hungarian, so consonants and punctuation are never altered.
- The result is safe for slugs, file names, and any system limited to the basic Latin alphabet.