Slugify Tool
Convert any text into a clean, URL-safe slug. Lowercase, accent-free, and hyphenated, all in your browser.
Independently verified for accuracy
Calculator by Toolsloft ↗- Slug
- hello-world
Turn any title or phrase into a clean, URL-safe slug. Paste your text and get a lowercase, hyphenated version with accents removed and punctuation stripped, ready to drop into a page address or file name. Everything runs in your browser.
How this is calculated
The text is normalized with Unicode NFKD and stripped of accent marks, lowercased, then every run of non-alphanumeric characters is replaced with a single hyphen. Leading and trailing hyphens are trimmed to produce a URL-safe slug.
How to use
- Type or paste your title or phrase into the box.
- Read the generated slug below the input.
- Copy the slug into your URL, file name, or content system.
Examples
- Title:
"Hello World!" → hello-world - Accents:
"Café del Mar 2024" → cafe-del-mar-2024
FAQ
- What characters are allowed in the slug?
- Only lowercase letters a-z and digits 0-9, joined by single hyphens. Everything else is converted to a hyphen or removed.
- How are accented letters handled?
- Accented letters are normalized and stripped of their accent marks, so "Café" becomes "cafe".
- Is my text sent anywhere?
- No. The slug is generated locally in your browser and your text never leaves the page.