Case Converter
Convert text between uppercase, lowercase, title case, sentence case, camelCase, snake_case, kebab-case and PascalCase.
How to Use
Enter your text in the input area, select the target case format from the dropdown, and the converted text will appear in real-time.
Frequently Asked Questions
The tool supports: UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, kebab-case, and CONSTANT_CASE.
camelCase joins words together with no separator, capitalizing the first letter of each word except the first. Example: 'hello world' becomes 'helloWorld'. It's commonly used for variable names in JavaScript.
snake_case uses underscores between words (common in Python and databases), while kebab-case uses hyphens (common in URLs and CSS class names). Both use lowercase letters.