Text Case Converter — UPPERCASE, lowercase, camelCase
Convert text between UPPERCASE, lowercase, Title Case, camelCase, snake_case, kebab-case, and PascalCase instantly.
Sample:
0 characters 0 without spaces 0 words 0 lines
Case Format Guide
| Format | Example | Used In |
|---|---|---|
| UPPERCASE | HELLO WORLD | Headings, acronyms, emphasis |
| lowercase | hello world | General text, URLs |
| Title Case | Hello World | Titles, headings, names |
| Sentence case | Hello world | Normal writing, articles |
| camelCase | helloWorld | JavaScript, Java variables |
| PascalCase | HelloWorld | Class names, React components |
| snake_case | hello_world | Python, databases, file names |
| kebab-case | hello-world | CSS, HTML, URLs |
Frequently Asked Questions
What is camelCase?
camelCase joins words with no spaces, capitalising each word after the first: "myVariableName". It is the standard naming convention in JavaScript, Java, and many other programming languages.
What is the difference between snake_case and kebab-case?
snake_case uses underscores between words (used in Python, databases, file names). kebab-case uses hyphens (used in CSS class names, HTML attributes, URLs). Both are lowercase.
What is Title Case?
Title Case capitalises the first letter of each word: "The Quick Brown Fox". It is used for headings, book titles, and article titles. Minor words like "a", "the", "of" are sometimes kept lowercase.
What is PascalCase?
PascalCase (also called UpperCamelCase) capitalises every word including the first: "MyClassName". It is used for class names in Java, C#, TypeScript, and component names in React.
How is character count different from word count?
Character count includes every character including spaces and punctuation. Word count counts words separated by spaces. Both are shown in this tool along with character count without spaces.