Turn any string into a URL-safe slug. Live preview, all in your browser.
Turn any string — a blog title, product name, or sentence with accents and emoji — into a clean, URL-safe slug. Slugify handles transliteration, separator choice, and strict alphanumeric mode, all in your browser. Paste one string or a whole list (one per line) and get instant results with per-line copy.
Paste your text
Type or paste one string per line. Each line is slugified independently so you can process a whole list at once.
Tune the options
Pick a separator (hyphen, underscore, dot, or none), toggle lowercase, strict mode (remove non-alphanumerics), and trim. Changes update the output live.
Copy the slug
Click Copy all to copy the full list, or use the per-line copy button to grab a single slug.
A slug is the URL-friendly portion of an address, typically lowercase ASCII with hyphens separating words — for example, 'my-first-post' instead of 'My First Post!'.
Strict mode removes any character that isn't a letter, number, or the chosen separator. It's the safest option for URLs and file names.
Yes. The underlying slugify library transliterates common accented characters (é → e, ñ → n, etc.) so the output stays ASCII-safe.
Yes — choose hyphen (default), underscore, dot, or no separator at all. The selection applies to every line.