Case Converter
Convert any text to UPPERCASE, lowercase, Title Case, Sentence case, camelCase or alternating case instantly.
ADVERTISEMENT
Your converted text will appear here...
ADVERTISEMENT
Frequently Asked Questions
What is Title Case?
Title Case capitalises the first letter of each major word in a sentence. It's used for headings, titles, and proper nouns. Words like "the", "and", "of" are typically left lowercase unless they start a title.
What is camelCase?
camelCase removes spaces and capitalises the first letter of each word except the first (e.g. "my variable name" becomes "myVariableName"). It's widely used in programming and coding.
What is snake_case?
snake_case replaces spaces with underscores and converts all text to lowercase (e.g. "my variable" becomes "my_variable"). It's commonly used in Python programming and database column names.
ADVERTISEMENT