Slug generator is a developer tool that turns any text into a URL-safe slug. It normalises Unicode, strips diacritics, removes punctuation, and joins words with a separator of your choice. The tool runs in your browser.
SEPARATOR
OPTIONS
Direct links for specific slug workflows.
String.prototype.normalize("NFKD"), followed by a combining-mark stripping regex (/\p{Diacritic}/gu), lowercasing, and a non-word-character regex collapse to the chosen separator.String.prototype.normalize, regular expressions with Unicode property escapes (/u flag). No external library.Reviewed and tested May 25, 2026.