📝 Text Tools

Case Converter

Convert text between UPPER CASE, lower case, Title Case, Sentence case, camelCase, PascalCase, snake_case, kebab-case, and more.

What is a Case Converter?

A case converter is a text transformation tool that changes the capitalization pattern of text without altering its characters. Different programming languages, file naming conventions, and writing styles require text in different cases. For example, JavaScript variable names typically use camelCase, Python uses snake_case, and CSS class names use kebab-case.

Instead of manually retyping text to change its case, our tool converts instantly between all common formats: UPPER CASE, lower case, Title Case, Sentence case, camelCase, PascalCase (UpperCamelCase), snake_case, kebab-case, SCREAMING_SNAKE_CASE, and more.

FAQ

What is camelCase?

camelCase joins words without spaces, capitalizing the first letter of each word after the first. Example: myVariableName. It's the standard for variable and function names in JavaScript, Java, and many other languages.

What is the difference between camelCase and PascalCase?

PascalCase (also called UpperCamelCase) capitalizes the first letter of every word including the first: MyVariableName. It's commonly used for class names in object-oriented languages like C#, Java, and PHP.