Slug Generator

Turn a title into a clean URL slug, with accents and punctuation handled.

Runs in your browser using String.normalize (NFD) — nothing is uploaded

How to use it

  1. Type or paste the title.
  2. The slug updates as you type. Choose the separator and whether to keep stop words.

Questions

Should I remove stop words?
Usually not. Removing "the" and "of" shortens a slug but can make it read strangely, and it has no measurable ranking benefit. Prefer a slug a person can read aloud.
What happens to accented letters?
They are transliterated to their closest unaccented equivalent, so "Crème Brûlée" becomes "creme-brulee" rather than dropping the letters entirely.

Related tools