1001Ferramentas
๐Ÿงน Text

Remove Accents

Remove accents and special characters from text. Useful for normalizing data, generating slugs and preparing text for legacy systems.

How does accent removal work?

The text is normalized to NFD form (Canonical Decomposition) using the native JavaScript API, which separates each base character from its diacritics (accents). Then, the diacritics (Unicode code U+0300 to U+036F) are removed with a regular expression.

The process is identical to that used internally by Slugify to generate friendly URLs.

Related Tools