Remove Accents
Strip accents and diacritical marks from letters, converting é, ñ, ü, and similar to plain equivalents.
Converts accented letters to their closest plain-ASCII equivalent — é becomes e, ñ becomes n — for systems, filenames, or search indexes that don't handle accented characters reliably. This is the same accent-stripping step Slug Generator uses internally, exposed as its own standalone tool.
Example: "café, résumé, naïve, jalapeño" becomes "cafe, resume, naive, jalapeno".
How it works
- Paste text with accented letters
- Accents are stripped instantly, on your device
- Copy the plain-letter result
Frequently asked questions
Does this work on every language's accented letters?
It handles any letter with a combining diacritical mark — most Latin-script languages (French, Spanish, German, Portuguese, Vietnamese, and more). It won't affect non-Latin scripts, which don't use combining accents the same way.
Is my text uploaded anywhere?
No — Remove Accents runs entirely in your browser using JavaScript/WebAssembly. Your text is never sent to a server.
Does this change any letters that don't have an accent to begin with?
No — plain ASCII letters pass through completely unchanged; only characters with a diacritical mark (é, ñ, ü, and similar) are converted to their unaccented equivalent.