Text Case Converter
Convert text between different cases instantly. Free, no signup.
Related tools
Frequently asked questions
What is camelCase?
camelCase starts with a lowercase letter and each subsequent word starts with an uppercase letter. Example: helloWorldFoo. Used in JavaScript, Java variable names.
What is PascalCase?
PascalCase is like camelCase but starts with an uppercase letter. Example: HelloWorldFoo. Used for class names in most programming languages.
What is snake_case?
snake_case uses underscores between words and all lowercase. Example: hello_world_foo. Used in Python, Ruby, SQL column names.
What is kebab-case?
kebab-case uses hyphens between words and all lowercase. Example: hello-world-foo. Used in URLs, CSS class names, HTML attributes.
What is CONSTANT_CASE?
CONSTANT_CASE uses underscores between words and all uppercase. Example: HELLO_WORLD_FOO. Used for constants in most programming languages.