Tt
Case Converter
Convert any text to UPPERCASE, lowercase, Title Case, camelCase, snake_case, kebab-case, or PascalCase. Perfect for developers, writers, and content creators.
TextFree • No signup • Works in browser
Output
Output will appear here...
Frequently Asked Questions
What is camelCase?+
camelCase joins words together with no spaces, capitalising the first letter of each word except the first. Example: myVariableName. Commonly used in JavaScript, Java, and Swift.
What is snake_case?+
snake_case uses underscores between words with all letters lowercase. Example: my_variable_name. Commonly used in Python, Ruby, and database column names.
What is the difference between PascalCase and camelCase?+
PascalCase capitalises the first letter of every word including the first. Example: MyVariableName. camelCase keeps the first letter lowercase. PascalCase is common in C# and React component names.
What is kebab-case?+
kebab-case uses hyphens between words with all letters lowercase. Example: my-variable-name. Commonly used in CSS class names, URL slugs, and HTML attributes.
What is Title Case?+
Title Case capitalises the first letter of each major word. Example: The Quick Brown Fox. Used for headings, book titles, and article titles.