Case Converter
Free online case converter — transform text to UPPER, lower, Title, camelCase, snake_case, and more instantly.
FAQ
What text cases does this converter support?
This tool supports UPPERCASE, lowercase, Title Case, Sentence case, camelCase, PascalCase, snake_case, kebab-case, CONSTANT_CASE, and dot.case — all with one click.
What is the difference between camelCase and PascalCase?
camelCase starts with a lowercase letter (e.g., "myVariableName"), while PascalCase starts with an uppercase letter (e.g., "MyVariableName"). camelCase is commonly used for variables and PascalCase for class names in programming.
When should I use snake_case vs kebab-case?
snake_case (words_separated_by_underscores) is common in Python and database column names. kebab-case (words-separated-by-hyphens) is standard for URLs, CSS class names, and file names.