Case Converter
Convert text case formats
π 100% client-side β your data never leaves this pageInput
Output
About this tool
Convert text between all common case formats: UPPERCASE, lowercase, Title Case, camelCase, PascalCase, snake_case, kebab-case and CONSTANT_CASE.
Frequently Asked Questions
What is camelCase?
camelCase starts with a lowercase letter and capitalizes the first letter of each subsequent word: helloWorld. It is widely used in JavaScript and Java variable names.
What is snake_case?
snake_case uses underscores between words and all lowercase letters: hello_world. It is common in Python, Ruby, and database column names.
What is kebab-case?
kebab-case uses hyphens between words: hello-world. It is commonly used in URLs, CSS class names, and HTML attributes.