Slug Generator
Turn a title into a clean, URL-safe slug for blog posts and product pages.
Turns a human-readable title into the lowercase, hyphenated format most CMSs and static site generators expect for a URL — accented letters are converted to their plain equivalents so the slug stays reliable everywhere.
Example: "10 Best Coffee Shops in San Francisco (2026)!" becomes 10-best-coffee-shops-in-san-francisco-2026.
How it works
- Type a title or heading
- It's lowercased, stripped of punctuation, and hyphenated instantly
- Copy the slug straight into your URL field
Frequently asked questions
Why are accented letters converted in the slug?
URLs are most reliable using plain ASCII — an accented letter like é is converted to its closest plain letter (e) so the slug works consistently across browsers, servers, and social sharing.
Is my text uploaded anywhere?
No — Slug Generator runs entirely in your browser using JavaScript/WebAssembly. Your text is never sent to a server.
What happens to numbers already in the title?
Numbers are kept as-is — only letters get lowercased and non-alphanumeric characters get replaced with hyphens, so \"Top 10 Tips\" becomes top-10-tips, not top-ten-tips.