Case Converter - Convert Text to UPPERCASE, lowercase, camelCase Online
Convert text between UPPERCASE, lowercase, camelCase, snake_case, and more
Text Tools
Case Converter - Convert Text to UPPERCASE, lowercase, camelCase Online
0 words · 0 chars · 0 lines
How to Use
1Type or paste your text into the text area
2Select the desired case type from the dropdown
3The converted text appears instantly in the result box
4Copy the result with one click
Frequently Asked Questions
camelCase starts with a lowercase letter and capitalizes the first letter of each subsequent word (e.g., myVariableName). It is commonly used in JavaScript and Java.
PascalCase (also called UpperCamelCase) capitalizes the first letter of every word including the first one (e.g., MyVariableName). It is commonly used for class names.
snake_case uses lowercase letters with underscores between words (e.g., my_variable_name). It is commonly used in Python and database column names.
kebab-case uses lowercase letters with hyphens between words (e.g., my-variable-name). It is commonly used in CSS class names and URLs.