Case Converter

Convert text to UPPER, lower, Title, camelCase, PascalCase, snake_case, kebab-case, and more.

Choose case

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 (e.g. 'helloWorldExample'). It is commonly used in JavaScript variable names.

What is the difference between PascalCase and camelCase?

PascalCase (also called UpperCamelCase) capitalises the first letter of every word including the first (e.g. 'HelloWorldExample'). It is commonly used for class and component names.

What is snake_case?

snake_case replaces spaces with underscores and uses all lowercase (e.g. 'hello_world_example'). It is widely used in Python, Ruby, and SQL.

What is kebab-case?

kebab-case replaces spaces with hyphens and uses all lowercase (e.g. 'hello-world-example'). It is the standard for URL slugs and CSS class names.

Can I convert from camelCase back to normal text?

Yes. Paste any camelCase, PascalCase, snake_case, or kebab-case string and the tool will detect the word boundaries and convert it to your chosen format.