Free Text Case Converter
Convert text between different cases instantly. Supports uppercase, lowercase, title case, sentence case, and more.
Related Tools
Converted text will appear here
Frequently Asked Questions
What is camelCase?
camelCase starts with a lowercase letter and capitalizes the first letter of each subsequent word: myVariableName. It is widely used for variable and function names in JavaScript, Java, and Swift.
What is the difference between snake_case and kebab-case?
snake_case separates words with underscores (my_variable_name), used in Python and databases. kebab-case uses hyphens (my-variable-name), used in CSS class names and URL slugs.
What is PascalCase?
PascalCase (also called UpperCamelCase) capitalizes the first letter of every word: MyClassName. It is the convention for class names in most object-oriented languages.