Last updated
Supported Character Sets
- Latin Extended-A and B (most European languages)
- Latin Extended Additional
- Combining Diacritical Marks (Unicode block)
- Greek letters with diacritics
- Cyrillic with diacritics
- Vietnamese tone marks
- Arabic diacritics (harakat)
Use the Diacritics Remover at techconverter.me to paste any text and get the diacritics-free ASCII version instantly — useful for URL slugs, usernames, search indexes, and file names.
Examples
Example 1: Basic Accent Removal
/* Input */
café, résumé, naïve, façade, über, señor
/* Output */
cafe, resume, naive, facade, uber, senor
/* French accents */
é → e (acute accent)
è → e (grave accent)
ê → e (circumflex)
ë → e (diaeresis)
à → a
â → a
ç → c
î → i
ô → o
ù → u
û → u
ü → u
Example 2: URL Slug Generation
/* Blog post title */
"Café au Lait: A Parisian Morning Ritual"
/* Step 1: Remove diacritics */
"Cafe au Lait: A Parisian Morning Ritual"
/* Step 2: Lowercase */
"cafe au lait: a parisian morning ritual"
/* Step 3: Replace spaces and special chars with hyphens */
"cafe-au-lait-a-parisian-morning-ritual"
/* Final URL */
https://example.com/blog/cafe-au-lait-a-parisian-morning-ritual
Example 3: Multi-Language Examples
/* Spanish */
"El Niño y la Señorita García"
→ "El Nino y la Senorita Garcia"
/* German */
"Über die Natur der Dinge"
→ "Uber die Natur der Dinge"
/* German umlauts */
ä → a ö → o ü → u
Ä → A Ö → O Ü → U
ß → ss (sharp S expands to two characters)
/* Portuguese */
"São Paulo e João Pessoa"
→ "Sao Paulo e Joao Pessoa"
/* Scandinavian */
"Søren Aaberg fra København"
→ "Soren Aaberg fra Kobenhavn"
ø → o å → a æ → ae