Slugify — Make a URL Slug from Text
Convert a title or any text into a clean URL slug — lowercased, accents folded to plain ASCII, and everything joined with dashes. It runs live in your browser.
How to use it
- 1Enter a title
Type or paste the title or text you want to slugify.
- 2Get the slug
The URL-friendly slug appears instantly below.
- 3Copy
Copy the slug and paste it into your CMS or code.
Readable, safe URLs
A slug is the human-readable part of a URL, like “my-first-post”. Good slugs are lowercase, use only letters, numbers and dashes, and drop accents and punctuation so they work everywhere and read cleanly in links.
Frequently asked questions
Is my text uploaded anywhere?
No. The slug is generated entirely in your browser; nothing is sent to a server.
How are accented characters handled?
They are folded to their closest ASCII letter — “café” becomes “cafe”.
What happens to punctuation and spaces?
Anything that is not a letter or number becomes a single dash, and leading/trailing dashes are trimmed.
Related tools
Case Converter
Convert text between UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, kebab-case and CONSTANT_CASE. Runs in your browser.
Word Counter
Count words, characters, sentences, paragraphs and reading time as you type. Works entirely in your browser — your text is never uploaded.
URL Encoder
Encode or decode URLs and query parameters in your browser. Percent-encode a single component or a whole URL and copy the result — nothing is sent to a server.