Convert text between 8 different case formats instantly — UPPER, lower, Title, camelCase and more.
camelCase starts with a lowercase letter and capitalises the first letter of each subsequent word, with no spaces (e.g. 'myVariableName'). It is widely used in JavaScript, Java and Swift.
PascalCase (also called UpperCamelCase) capitalises the first letter of every word with no spaces (e.g. 'MyVariableName'). It is the standard convention for class names in most programming languages.
snake_case uses lowercase letters with underscores between words (e.g. 'my_variable_name'). It is the standard naming convention in Python and Ruby.
kebab-case uses lowercase letters with hyphens between words (e.g. 'my-variable-name'). It is commonly used for CSS class names, HTML attributes and URL slugs.
Title Case capitalises the first letter of every major word. It is used for headings, book titles and article headlines (e.g. 'The Quick Brown Fox').