Strip accents and diacritical marks from text — café becomes cafe. Runs in your browser.
The tool decomposes each letter into its base character plus its accent (Unicode NFD), then drops the accent marks. Letters like ß, ø and æ that have no plain base are mapped to ss, o and ae.
It only removes the accent marks; the base letters stay. This is ideal for making URL slugs, file names, database keys or search-friendly text from accented input.
No. Everything runs in your browser — nothing is sent to a server.