Slug Generator
Turn any title into a clean, SEO-friendly URL slug: lowercase, accents stripped, punctuation removed, words joined by your chosen separator. Paste multiple lines for batch mode, one slug per line.
Slugs
How slugs are built: the text is Unicode-normalized (NFD) so accented characters like é, ü, and ñ decompose into base letters plus combining marks, the marks are stripped, everything is lowercased, punctuation and symbols are removed, and runs of spaces collapse into a single separator. The max-length cut happens at a word boundary, so slugs never end mid-word or with a dangling separator. Hyphens are the standard choice for URLs; search engines treat them as word separators, while underscores are better kept for file names and code identifiers. Everything runs locally in your browser.