Back to Tools
Case Converter
Processed Locally
Convert text between different case formats: camelCase, PascalCase, snake_case, kebab-case, and more
All Format Results
Enter text...
Enter text...
Enter text...
Enter text...
Enter text...
Enter text...
Enter text...
Enter text...
Enter text...
Frequently Asked Questions
camelCase is a naming convention where the first word is lowercase and subsequent words start with an uppercase letter, with no spaces or separators. Example: "helloWorld", "myVariableName".
PascalCase (also called UpperCamelCase) is similar to camelCase but the first letter is also capitalized. Example: PascalCase is "HelloWorld" while camelCase is "helloWorld".
snake_case (with underscores) is commonly used in Python, Ruby, and database column names. kebab-case (with hyphens) is commonly used in URLs, CSS classes, and file names.
CONSTANT_CASE (SCREAMING_SNAKE_CASE) uses all uppercase letters with underscores. It's commonly used for constants and environment variables in many programming languages.
Yes! The tool automatically detects word boundaries in your input text, whether they're separated by spaces, underscores, hyphens, or different cases. All conversion formats are shown simultaneously.