Text Case Converter
Convert your text to any case format instantly. Click a format to apply.
Advertisement
Frequently Asked Questions
camelCase joins words without spaces, capitalizing each word except the first: "hello world" → "helloWorld". Used widely in JavaScript variable naming.
snake_case replaces spaces with underscores and lowercases everything: "hello world" → "hello_world". Common in Python, Ruby, SQL, and file names.
kebab-case replaces spaces with hyphens and lowercases everything: "hello world" → "hello-world". Standard for CSS class names, HTML attributes, and URLs.
PascalCase (also called UpperCamelCase) capitalizes every word including the first: "hello world" → "HelloWorld". Used for class names in most programming languages.