Tested tool guide
Text and writing tools
Checked August 16, 2026
What Text to URL Slug Converter does, with a checked example
Paste a headline, product name, or file title and get the version of it that belongs in a URL: lowercased, ASCII-only, punctuation stripped, words joined with hyphens. Non-Latin letters are transliterated first, so cafe becomes cafe and Munchen becomes munchen. The thing people most often misread is stop-word removal: with that option enabled, short function words like the, a, and in are dropped, so the slug contains fewer words than the text you pasted. Both the separator and the stop-word list can be turned off, and the result is safe to drop into a link path as-is.
Worked example
A concrete input and expected output from the current implementation.
Input
The 3 Best Cafés in München - 2026 Guide!
->
Expected output
3-best-cafes-munchen-2026-guide
Accented letters are transliterated first (Cafés to cafes, München to munchen), punctuation like the dash and exclamation mark is stripped, and with stop-word removal enabled the and in are dropped. The remaining words are lowercased and joined with the default hyphen separator.