Slug Generator
Text to a clean URL slug.
A slug is the URL-safe end of a web address. Paste a title and this tool lowercases it, strips accents and symbols, and joins the words with hyphens, so "My First Post!" becomes "my-first-post". You can switch the separator, keep the original case, or cap the length. Everything runs in your browser, with no signup and nothing uploaded.
How it works
- Normalize accents - characters like é and ü are split into a base letter and its mark, then the mark is dropped, so é becomes e.
- Remove non-alphanumerics - anything that is not a letter, number, space, hyphen, or underscore is stripped, so punctuation and symbols disappear.
- Collapse to the separator - runs of spaces are squeezed into a single separator, and leading or trailing separators are trimmed off the ends.
Examples
| Input | Slug |
|---|---|
| My First Post! | my-first-post |
| Café del Mar | cafe-del-mar |
| 50% Off Sale!!! | 50-off-sale |
| Top 10 SEO Tips | top-10-seo-tips |