URL Slug Generator
Turn any string into a canonical URL slug: lowercase, hyphen-separated, no accents, no punctuation.
What makes a good slug?
- Stable. Don't change slugs once URLs are public — they're how the web links to your content.
- Short. 3–6 meaningful words is plenty. Long slugs get truncated by tweets, share cards, and humans.
- ASCII-only. Non-ASCII works technically but can confuse copy-paste, analytics, and older systems.
- Lowercase. Web servers usually treat URLs as case-sensitive — pick one case and stick with it.