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
Reverse Text
Reverse any text character by character online. Instant result in the browser, no data sent to servers.
Text Case Converter
Convert text between UPPERCASE, lowercase, Title Case, camelCase and snake_case. Instant result in the browser.
Number to Words (Portuguese)
Convert numbers to words in Portuguese (por extenso). Supports positive and negative integers and values up to hundreds of millions.