Case Converter
Type or paste any text and get every common programming and writing case at once, including a clean URL slug. Copy any single result with one click.
One tokenizer, many cases
Every output on this page comes from a single step: splitting your text into lowercase word tokens. The splitter breaks on spaces, underscores, hyphens, dots, and slashes, and also on camelCase humps where a lowercase letter meets an uppercase one, so parseHTTPResponse becomes parse, http, response. From that token list, camelCase and PascalCase join with no separator, snake and kebab join with an underscore or hyphen, and Title Case capitalizes each word. The URL slug output goes one step further by collapsing repeated dashes and dropping punctuation so it is safe in a path. Because tokens are lowercased first, acronyms lose their original casing and need a manual touch-up. Nothing is uploaded. Pair this with the Word Counter for length checks or the JSON to TypeScript generator when you need consistent field names.