Examples
-
snake_case input
user_first_name -
Title input
Convert This Sentence
About Case Converter
Every language and file format seems to insist on a different naming convention - JavaScript wants camelCase, Python and databases want snake_case, URLs and CSS want kebab-case, classes want PascalCase - and translating a variable name by hand between them is tedious and error-prone.
Paste any identifier or short phrase, in any of those conventions, and get every common case variant back at once: camelCase, PascalCase, snake_case, kebab-case (also handy as a URL slug), CONSTANT_CASE, Title Case, and Sentence case.
Word boundaries are detected from capitalization changes, underscores, hyphens, and spaces, so mixed input like `some_example-Text here` still splits into sensible words before reassembling.
FAQ
- Does it handle acronyms like 'userID' correctly?
- Consecutive capitals are treated as a single word boundary (so 'userID' splits into 'user' and 'id'), which matches how most style guides treat acronyms - though very unusual mixed-case input may need a manual tweak.