Accent / Diacritic Remover
Paste text with accented characters and instantly get a clean version with all diacritics stripped.
0 characters
Samples:
0 characters
Changed Characters
Copied!
Summary
Paste text with accented characters and instantly get a clean version with all diacritics stripped.
How it works
- The tool applies String.prototype.normalize("NFD") to decompose each accented character into its base letter plus a separate combining diacritic code point, then strips all combining characters in the Unicode range U+0300–U+036F using a regular expression.
Use cases
- Normalize user-submitted names or addresses for database storage.
- Prepare text for ASCII-only systems that cannot handle Unicode.
- Generate URL slugs from titles containing accented letters.
- Clean imported CSV data with mixed accent conventions.
Frequently Asked Questions
Last updated: 2026-06-09 ·
Reviewed by Nham Vu