Slug Generator
Convert any text to clean URL slugs — lowercase, hyphenated, accent-stripped, URL-safe. Also generates snake_case, camelCase, and PascalCase variants.
Turn a title into a URL-safe slug — lowercase, hyphen-separated, no punctuation, with diacritic-stripping so "Café" becomes "cafe" and emojis are removed cleanly instead of percent-encoded into garbage. Useful for generating URL paths for blog posts in a CMS that doesn't auto-slug well, building shareable links from page titles, or generating the right slug for a single title or tag in one step. The transformation runs locally; the titles you paste never reach a server.
Next steps
URL Encoder / Decoder
RecommendedPercent-encode and decode URLs and URL components. Supports encodeURIComponent and encodeURI.
URL Parser
RecommendedBreak any URL into protocol, host, path, query params, and hash.
HTML Encoder / Decoder
Encode HTML special characters to entities and decode them back.
UUID Generator
Generate v4 (crypto-random) or v1 (time-based) UUIDs instantly — copy one or generate a batch.
What Is a Slug?
Common Use Cases
Blog post URLs
Convert article titles to slugs for WordPress, Ghost, Hugo, Astro, or any custom CMS.
Product detail pages
Build readable e-commerce URLs from product names while leaving SKU IDs hidden.
API path parameters
Generate URL-safe identifiers for REST routes that humans can recognize at a glance.
Cross-platform file names
Produce consistent file names that survive Windows, macOS, and Linux without escaping.
Frequently Asked Questions
Advertisement