Slug Generator: Turning Titles into URL-Friendly Strings
A 'slug' is the URL-safe portion of an address — 'Best Hiking Trails in Korea' becomes 'best-hiking-trails-in-korea'. Good slugs are lowercase, hyphenated, free of special characters, and short enough to read.
Slug generators handle the conversion automatically: lowercase, replace spaces with hyphens, strip punctuation, transliterate accented and non-Latin characters when possible. The result is a string that's safe in any URL and easy for humans to read.
Slug rules to follow
- •Lowercase only — case-sensitive URLs are confusing
- •Hyphens (not underscores) between words — Google explicitly recommends this
- •ASCII only when possible — non-ASCII URLs work but get encoded into messy %-strings
- •Keep under 60 characters — long slugs get truncated in search results
- •Avoid filler words ('a', 'the', 'in') for SEO compactness
Extended FAQ
How does it handle Korean characters?
Two options: keep them as-is (modern URLs handle this fine but get encoded as %xx in some places), or romanize them (한국 → 'hanguk').
Are my pasted titles stored?
No — runs entirely in your browser.
