Text Case Converter
Convert text between 10 different cases instantly — UPPERCASE, lowercase, Title Case, camelCase, PascalCase, snake_case, kebab-case, and more. Click any result to copy.
Frequently Asked Questions
What is Title Case?+
Title Case capitalizes the first letter of every word: 'Hello World Example'. Used for headings, titles, and names.
What is camelCase?+
camelCase removes spaces and capitalizes the first letter of each word except the first: 'helloWorldExample'. Used in JavaScript, Java, and many programming languages for variable names.
What is snake_case?+
snake_case replaces spaces with underscores and uses all lowercase: 'hello_world_example'. Commonly used in Python, Ruby, and database column names.
What is kebab-case?+
kebab-case replaces spaces with hyphens: 'hello-world-example'. Used in CSS class names, HTML attributes, and URL slugs.
What is PascalCase?+
PascalCase capitalizes the first letter of every word with no spaces: 'HelloWorldExample'. Used for class names in most programming languages.