Case Converter

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 anywhere
Copied!

Frequently Asked Questions

What is camelCase?

camelCase joins words without spaces, capitalizing each word after the first: "helloWorldExample". Common in JavaScript variable names and JSON keys.

What is PascalCase?

PascalCase is like camelCase but the first word is also capitalized: "HelloWorldExample". Used for class names in most programming languages.

What is snake_case?

snake_case uses underscores between words in lowercase: "hello_world_example". Standard for Python variables, database column names, and file names.

What is kebab-case?

kebab-case uses hyphens between words in lowercase: "hello-world-example". Used in CSS class names, HTML attributes, and URL slugs.

What's the difference between Title Case and Sentence case?

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).