Case Converter
Instantly convert text to any case format.
Result β
Case Format Reference
| Format | Example | Common Use |
|---|---|---|
| UPPER CASE | HELLO WORLD | Headings, acronyms, emphasis |
| lower case | hello world | General text, URLs |
| Title Case | Hello World | Titles, headings, names |
| Sentence case | Hello world | Standard sentences |
| camelCase | helloWorld | JavaScript variables, JSON keys |
| PascalCase | HelloWorld | Class names, React components |
| snake_case | hello_world | Python variables, database columns |
| kebab-case | hello-world | CSS classes, URLs, HTML attributes |
| CONSTANT_CASE | HELLO_WORLD | Constants, environment variables |
Frequently Asked Questions
What is camelCase? βΌ
camelCase writes compound words with no spaces, starting with a lowercase letter, and capitalizing the first letter of each subsequent word. Example: myVariableName. It's widely used in JavaScript and JSON.
What is the difference between camelCase and PascalCase? βΌ
Both join words without spaces. camelCase starts with a lowercase letter (myVariable), while PascalCase starts every word with uppercase (MyVariable). PascalCase is used for class names and React components.
What is snake_case used for? βΌ
snake_case uses underscores to separate words and is commonly used in Python variable names, database column names, and file names.
What is kebab-case? βΌ
kebab-case uses hyphens to join words (like a kebab skewer). It's standard for CSS class names, HTML data attributes, and URL slugs.
Related Tools
π βοΈ π π β¨ π§Ή
Word Counter
Count words, characters, sentences, and paragraphs. Get reading time estimates.
Character Count
Count characters for Twitter/X, LinkedIn, Instagram and other social media platforms.
Text Diff Checker
Compare two texts and highlight differences. Find added, removed, and changed words or lines instantly. Word-level and line-level diff modes.
Readability Analyzer
Check the readability of any text. Get Flesch-Kincaid grade level, reading ease score, average sentence length, and writing improvement suggestions.
Fancy Text Generator
Convert text into fancy Unicode styles β bold, italic, cursive, Fraktur, bubble text, strikethrough, and more. Copy and paste anywhere.
Duplicate Line Remover
Remove duplicate lines from any list or text. Sort alphabetically, trim whitespace, ignore case, and count unique vs duplicate entries.