Text Case Converter
Convert text between different cases instantly
Want to learn more? Read our guide: Text Tools for Better Productivity
Why Use This Tool?
- Convert text between UPPERCASE, lowercase, Title Case, camelCase, snake_case, and kebab-case in one click.
- Essential for developers formatting variable names, CSS classes, or file names consistently.
- Instant browser-based conversion with no signup or data collection.
How to Use
- Type or paste your text into the input area
- Click any case conversion button
- The converted text appears in the output area — click Copy to clipboard
FAQ
What is Title Case?
Title Case capitalizes the first letter of each word. For example, "hello world" becomes "Hello World".
What is the difference between camelCase and snake_case?
camelCase joins words with no separator, capitalizing each word after the first (e.g., "myVariableName"). snake_case uses underscores between lowercase words (e.g., "my_variable_name").
What is Sentence case?
Sentence case capitalizes only the first letter of the first word in each sentence. For example, "hello world. goodbye world" becomes "Hello world. Goodbye world".
What is kebab-case used for?
kebab-case uses hyphens between lowercase words (e.g., "my-variable-name"). It is commonly used in URLs, CSS class names, and file names.
What is the difference between camelCase and PascalCase?
camelCase starts with a lowercase letter (myVariable), while PascalCase starts with an uppercase letter (MyVariable). camelCase is used for variables/functions, PascalCase for classes/components.