Text Case Converter

Convert between UPPER, lower, Title, camelCase, snake_case and 5 more formats

Input Text

About This Tool

The free text case converter transforms your text into 8 different case formats with a single click. Instantly switch between UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, and kebab-case. Useful for programmers formatting variable names, writers adjusting headings, and anyone normalizing text.

Common Use Cases

Frequently Asked Questions

camelCase writes compound words without spaces, capitalizing each word except the first. Example: myVariableName. Common in JavaScript, Java, and Swift.
PascalCase capitalizes every word including the first. Example: MyVariableName. Used in C#, Java class names, and React components.
snake_case uses underscores between words, all lowercase. Example: my_variable_name. Common in Python, Ruby, and database column names.
kebab-case uses hyphens between words, all lowercase. Example: my-variable-name. Standard for CSS class names and URL slugs.