Case Converter
Convert text between different case formats
Input Text
lowercase
All characters converted to lowercase
Result will appear here...
UPPERCASE
All characters converted to uppercase
Result will appear here...
Title Case
First letter of each word capitalized
Result will appear here...
camelCase
First word lowercase, subsequent words capitalized
Result will appear here...
PascalCase
All words capitalized, no spaces
Result will appear here...
snake_case
Words separated by underscores, all lowercase
Result will appear here...
kebab-case
Words separated by hyphens, all lowercase
Result will appear here...
CONSTANT_CASE
Words separated by underscores, all uppercase
Result will appear here...
Use Cases
Programming
- • camelCase: JavaScript variables
- • PascalCase: Class names
- • snake_case: Python variables
- • CONSTANT_CASE: Constants
General
- • Title Case: Headlines, titles
- • kebab-case: URLs, CSS classes
- • lowercase: General text
- • UPPERCASE: Emphasis, headers