Text Case Converter
Convert text between UPPERCASE, lowercase, Title Case, camelCase, snake_case, and kebab-case.
[ Advertisement ]
Input text
UPPERCASEcopy
lowercasecopy
Title Casecopy
Sentence casecopy
camelCasecopy
PascalCasecopy
snake_casecopy
kebab-casecopy
Result not what you expected?Tell us what happened and we will fix it fast.
Send feedback[ Advertisement ]
Frequently asked questions
What is camelCase?
camelCase is a naming convention where the first word is lowercase and subsequent words start with uppercase, e.g. "myVariableName". Common in JavaScript and Java.
What is snake_case?
snake_case uses underscores between words and all lowercase, e.g. "my_variable_name". Common in Python, Ruby, and database column names.