Case Converter
Convert text between different cases: camelCase, PascalCase, snake_case, kebab-case, UPPERCASE, lowercase, Title Case, and more.
Frequently Asked Questions
What is camelCase?
camelCase capitalizes the first letter of each word except the first, with no spaces or separators. It is commonly used for variable names in JavaScript, Java, and TypeScript.
What is snake_case?
snake_case uses underscores to separate words, with all letters in lowercase. It is the standard naming convention in Python, Ruby, and Rust.
What is kebab-case?
kebab-case (also called dash-case) uses hyphens to separate words. It is commonly used in URLs, CSS class names, and HTML attributes.