Slug Generator
Turn any title or text into a clean, URL-safe slug — lowercase, hyphenated, with accents transliterated (José → jose). Runs entirely in your browser; nothing is uploaded.
The human-readable, URL-safe tail of a web address — the my-post-title in /blog/my-post-title.
A slug is the URL-safe version of a title — the part of a web address that identifies a page in a human-readable way, like my-first-post in /blog/my-first-post. Good slugs are lowercase, use hyphens instead of spaces, drop punctuation, and replace accented characters with their plain-ASCII equivalents so they're portable and SEO-friendly.
This generator lowercases the text, transliterates accents with the browser's own Unicode normalization (so café → cafe, Łódź → lodz), collapses everything else to your chosen separator, and can optionally drop common stop words (a, the, of…) or cap the length at a word boundary. Nothing is sent to a server.