TEXT CASE CONVERTER
Uppercase · lowercase · Title Case · camelCase · snake_case · and more
Click any card to copy
FREQUENTLY ASKED QUESTIONS
What is camelCase and when should I use it?
camelCase writes compound words with no spaces where each new word starts with a capital letter (except the first), like "myVariableName". It's widely used in JavaScript, Java, and most programming languages for variable and function names.
What is the difference between snake_case and kebab-case?
snake_case uses underscores between words (my_variable_name) and is commonly used in Python and database column names. kebab-case uses hyphens (my-variable-name) and is used in CSS class names, HTML attributes, and URL slugs.
What is Title Case?
Title Case capitalizes the first letter of each major word, typically excluding short articles and prepositions. It's used for book titles, article headings, and product names.
How is Sentence case different from Title Case?
Sentence case only capitalizes the first letter of the entire text and any proper nouns, just like a normal sentence. Title Case capitalizes the first letter of every major word.