Slugify String

Slug

How to use this slugify tool

  1. Type any title, sentence, or phrase.
  2. It's converted to lowercase, accents removed, spaces replaced with hyphens.
  3. 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.