Slug & Case Converter
Clean URL slugs and convert text case.
Slugify text and convert between naming cases
Type or paste any title and instantly get an SEO-friendly URL slug plus every common programming case — camelCase, PascalCase, snake_case, kebab-case, CONSTANT_CASE and Title Case. Click any result to copy it.
Accents are transliterated and punctuation is stripped, so whatever you paste comes out clean and safe to use in URLs, filenames and code.
Frequently asked questions
What makes a good URL slug?
A good slug is lowercase, uses hyphens between words, drops accents and special characters, and is short but descriptive. For example 'Café Menu 2024!' becomes 'cafe-menu-2024'.
Does this handle accented and non-English characters?
Yes. Accented letters are transliterated to their closest ASCII form (é → e, ñ → n) so your slugs stay clean and URL-safe.
What are camelCase, snake_case and kebab-case?
They're naming conventions for identifiers: camelCase (myVariable), PascalCase (MyVariable), snake_case (my_variable) and kebab-case (my-variable). Different languages and style guides prefer different ones.
Is my text sent anywhere?
No. All conversion happens in your browser — nothing is uploaded, logged or stored.