Remove accents (diacritics) like ´, `, ¨, ^ from letters in your text. Converts characters like é, ü, ñ to e, u, n.
Diacritics are marks added to letters to change their pronunciation or distinguish them from similar words. Examples include acute accents (é), grave accents (à), umlauts (ü), cedillas (ç), and tildes (ñ). While essential in many languages, they can sometimes cause issues in software systems, databases, or URLs that only support basic ASCII characters.
This tool uses Unicode normalization (specifically NFD - Normalization Form Canonical Decomposition) to separate base letters from their diacritical marks, and then removes the marks (Unicode range U+0300 to U+036F). This effectively converts accented characters to their closest ASCII equivalent.