Slug Generator
Type a title, get a clean URL slug — accents stripped, Turkish i/İ/ı handled correctly, nothing sent anywhere.
How does the Turkish character handling work?
Turkish text has a tricky case-folding rule: the capital dotted İ lowercases to i, while plain I lowercases to dotless ı — the opposite of English. This tool applies the correct Turkish locale rule first, then maps ı/ğ/ü/ş/ö/ç to their plain ASCII equivalents (i/g/u/s/o/c) so slugs stay clean and URL-safe.
What happens to punctuation and accents?
Any run of spaces, punctuation, or symbols becomes a single hyphen, and accented Latin letters (é, à, ü...) are stripped to their base letter. Leading and trailing hyphens are trimmed.
Is my text sent anywhere?
No — the slug is generated entirely in your browser. Nothing is uploaded.