Slug Generator
Turn any text into a URL-safe slug.
Slug
how-to-make-a-1-000-cafe-a-beginner-s-guide
About
Paste a title, get a clean URL slug. Lowercased, accents stripped, spaces and punctuation replaced with hyphens, special characters removed. Useful for blog post URLs, file names, and database keys.
How to use
- Paste any text.
- See the slug update live.
- Pick a separator (-, _) and tweak max length if needed. Click copy.
FAQ
Are accented characters preserved?+
No. They get transliterated to ASCII. 'Café' becomes 'cafe', 'Über' becomes 'uber'. This is the safest behavior across web servers and databases.