Slug Generator

Development Client-side slug url kebab case generator seo

This tool runs entirely client-side, in your browser: your data is never sent anywhere.

What it does

Converts any text — titles, product names, article headlines — into a clean, lowercase, hyphen-separated slug suitable for URLs, filenames, or IDs.

Try it

How it works

  1. Accented/diacritic characters are normalized to their plain ASCII equivalent (e.g. ée, üu) using Unicode NFD decomposition.
  2. Anything that isn't a letter or digit is treated as a word boundary and replaced with the chosen separator.
  3. Leading, trailing, and duplicate separators are collapsed/removed.
  4. Optionally, the result is lowercased (recommended for URLs and SEO).

Everything runs locally in your browser, updating live as you type.