Text Case Converter

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

Input
Result

Frequently Asked Questions

What is camelCase?

camelCase starts with a lowercase letter and capitalizes the first letter of each subsequent word, with no separators: myVariableName.

When should I use snake_case?

snake_case is common in Python, Ruby, and database column names. Words are lowercase and separated by underscores.

What is CONSTANT_CASE?

CONSTANT_CASE is uppercase with underscores, used for constants and environment variables: MAX_RETRY_COUNT.