Case Converter
Convert text to different cases including uppercase, lowercase, title case, sentence case, camel case, pascal case, snake case, and more.
About Text Case Conversion
Text case refers to the capitalization of letters in a text. Different cases serve different purposes and are used in various contexts:
Common Text Cases
- UPPERCASE: All letters are capitalized. Often used for emphasis, headings, or acronyms.
- lowercase: All letters are in small case. Used in casual writing, email addresses, and URLs.
- Title Case: The first letter of each word is capitalized. Used for titles, headings, and book names.
- Sentence case: Only the first letter of the sentence and proper nouns are capitalized. Used in normal writing and paragraphs.
Programming-Related Cases
- camelCase: First letter is lowercase, and the first letter of each subsequent word is uppercase with no spaces. Common in JavaScript, Java, and C#.
- PascalCase: First letter of each word is uppercase with no spaces. Used for class names in many programming languages.
- snake_case: All lowercase with underscores between words. Common in Python and Ruby.
- kebab-case: All lowercase with hyphens between words. Often used in URLs and CSS class names.
Tip
Using the appropriate case for your context improves readability and follows conventions. For example, use Title Case for headings, Sentence case for paragraphs, and camelCase or snake_case for variable names in programming.