Slug Generator
Turn titles and phrases into URL-safe slugs in your browser.
Tool workspace
Slug generation runs in your browser. Nothing you paste is sent to our servers.
How it works
This is for URL/SEO slugs—not the same as the Kebab Case Converter, which splits camelCase/snake_case identifiers and keeps Unicode letters.
Unicode policy: accents on Latin letters are stripped (café → cafe). Non-Latin scripts are removed rather than transliterated. Empty or punctuation-only input yields an empty result—no error.
Results update as you type (light debounce) or when you press Convert. Processing runs entirely in your browser.
Examples
- Hello World → hello-world
- café latte → cafe-latte
- Plan 030 — Slug! → plan-030-slug
- foo---bar → foo-bar
- (empty or punctuation only) → (empty)
Privacy
FAQ
Is my text uploaded to a server?
No. Slug generation runs entirely in your browser. Pasted content is not sent to Nova Engine.
Do I need an account?
No. All published tools work for guests without login.
How is this different from kebab-case?
Slug Generator builds URL-safe ASCII slugs (strip accents/punctuation, hyphenate). The Kebab Case Converter turns identifier-style text into kebab-case and keeps Unicode letters after word-splitting.
Are accents transliterated?
Accents are stripped via Unicode NFD + combining-mark removal (café → cafe). There is no full language transliteration; non-Latin scripts are removed.