Slug Generator
Turn titles and phrases into clean URL slugs. Supports separators (- or _), lowercase conversion, accent stripping, and a configurable max length. Arabic text is transliterated automatically using a Latin mapping (ا→a, ب→b, ث→th, …) so Arabic titles produce readable ASCII slugs.
Features
- Arabic → Latin transliteration built in
- Hyphen or underscore separator
- Configurable max length (10–200)
- Multi-line — one slug per line
Frequently Asked Questions
- How does Arabic transliteration work?
- Each Arabic letter maps to its closest Latin equivalent (ا→a, ب→b, ت→t, ث→th, ج→j, ح→h, خ→kh, and so on). Diacritics are stripped. The result is a readable, search-friendly slug.
- Can I slugify a whole list at once?
- Yes. Each line of input becomes its own slug — paste a list of titles and the output gives you one slug per line, ready to copy into a spreadsheet or CMS.
- Why strip accents?
- URL-safe slugs should stay within ASCII a-z and 0-9 for maximum compatibility. Accent stripping turns café → cafe and résumé → resume while keeping the word intact.