Slugify String
Slug
How to use this slugify tool
- Type any title, sentence, or phrase.
- It's converted to lowercase, accents removed, spaces replaced with hyphens.
- Use the result as a URL path, filename, or database identifier.
What is a slug?
A slug is the URL-friendly version of a string — no spaces, no special characters, all lowercase. It's what you see after the domain in a blog post URL, like example.com/my-awesome-blog-post.
Why remove accents and special characters?
URLs are most reliable when limited to basic ASCII characters — accented letters and symbols can cause encoding issues or display inconsistently across browsers and systems.
Is a slug the same as a filename?
They follow similar rules, but a slug is specifically for URLs. The same safe format also works well as a filename to avoid cross-platform compatibility issues.