Case Converter
Type or paste text below and instantly see all case conversions — lowercase, UPPERCASE, Title Case, camelCase, PascalCase, snake_case, kebab-case and CONSTANT_CASE.
Input
Related Tools
Frequently Asked Questions
What is camelCase?
camelCase (lowerCamelCase) starts with a lowercase letter and each subsequent word begins with an uppercase letter, with no separators. Example:
myVariableName. It is the standard naming convention in JavaScript, Java, and many other languages for variables and functions.What is snake_case?
snake_case uses all lowercase letters with words separated by underscores. Example:
my_variable_name. It is the standard convention in Python, Ruby, and SQL for variable and function names.What is PascalCase?
PascalCase (UpperCamelCase) capitalizes the first letter of every word with no separators. Example:
MyVariableName. It is standard for class names in most object-oriented languages including Java, C#, and JavaScript.What is kebab-case?
kebab-case uses all lowercase letters with words separated by hyphens. Example:
my-variable-name. It is the standard convention in HTML attributes, CSS class names, and URL slugs.About Case Converter
This tool converts text between eight common programming and writing case styles simultaneously. Paste your text once and copy any conversion you need. Useful for renaming variables, generating CSS class names, creating URL slugs, and more.