Slug Generator

Convert any title into a clean, URL-safe slug.

Turn a page title into a URL-friendly slug: lowercase, hyphenated, ASCII-only with diacritics stripped. Useful for blog posts, e-commerce URLs and SEO-friendly paths.

Common use cases

  • Create permalinks for blog posts and CMS articles
  • Build clean product URLs for an e-commerce catalogue
  • Convert headlines to file names for static-site generators (Hugo, Jekyll, Next.js)
  • Sanitise user-provided titles into safe URL paths

Frequently asked questions

Does it handle accents?
Yes — diacritics are normalised (é → e, ü → u) using Unicode normalisation, then non-alphanumerics become hyphens.
What about non-Latin scripts?
Cyrillic, Arabic, Chinese and Japanese characters are stripped by default since they don't have ASCII equivalents. Toggle 'transliterate' to romanise them where possible.

Related tools