Skip to content

Slug Generator

Type a title to get a clean, URL-safe slug instantly — lowercased, accents stripped (café → cafe), and punctuation collapsed into a single separator.

Separator

Slug

Type a title to generate its slug.

Processed locally. Your text never leaves your browser.

Common questions

What happens to non-Latin scripts, like Chinese, Arabic, or Cyrillic?

They're dropped entirely, not transliterated — for example, "你好 world" becomes just "world". This is a lightweight accent-stripping slugifier built for Latin-script titles, not a full transliteration library that converts other scripts into Latin-letter equivalents.

Does café → cafe work for every accented letter, including something like German ß?

It works for ordinary accented Latin letters (é, ñ, ü, and similar) via Unicode normalization, but a letter like German ß has no plain-ASCII equivalent to fall back to, so it's simply dropped rather than expanded to "ss" — verified directly: "Straße" becomes "stra-e", not "strasse".

Does choosing hyphens or underscores change anything besides the separator character?

No — only the separator changes. The same accent-stripping, lowercasing, and punctuation-collapsing rules apply either way.