Convert text between any case format — uppercase, lowercase, title case, sentence case, camelCase, PascalCase, snake_case, and kebab-case. Click any button to instantly transform your text.
Runs in your browser · No data sent anywherecamelCase joins words without spaces, capitalizing each word after the first: "helloWorldExample". Common in JavaScript variable names and JSON keys.
PascalCase is like camelCase but the first word is also capitalized: "HelloWorldExample". Used for class names in most programming languages.
snake_case uses underscores between words in lowercase: "hello_world_example". Standard for Python variables, database column names, and file names.
kebab-case uses hyphens between words in lowercase: "hello-world-example". Used in CSS class names, HTML attributes, and URL slugs.
Title Case capitalizes every word. Sentence case only capitalizes the first word of each sentence (and proper nouns, which this tool doesn't detect automatically).