Text Case Converter

Convert text between UPPERCASE, lowercase, Title Case, camelCase, snake_case, and kebab-case.

[ Advertisement ]
Input text
UPPERCASEHELLO WORLD, THIS IS SOME EXAMPLE TEXT.copy
lowercasehello world, this is some example text.copy
Title CaseHello World, This Is Some Example Text.copy
Sentence caseHello world, this is some example text.copy
camelCasehelloWorldThisIsSomeExampleText.copy
PascalCaseHelloWorldThisIsSomeExampleText.copy
snake_casehello_world,_this_is_some_example_text.copy
kebab-casehello-world,-this-is-some-example-text.copy
[ 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.