Text Case Converter
Convert text between case formats
Output...
Output...
Output...
Output...
Output...
Output...
Output...
Output...
Case Conventions
camelCase
Used in JavaScript variables, function names
PascalCase
Used in class names, React components
snake_case
Used in Python, Ruby, database columns
kebab-case
Used in URLs, CSS classes, file names
About Text Case Converter (Upper, Lower, Title & More)
1What is it?
Instantly convert text case formats. Transform to Uppercase, Lowercase, Title Case, Sentence Case, camelCase, snake_case, and kebab-case. Essential for developers, writers, and content managers ensuring consistent formatting.
2Use Cases
- Fix accidentally capitalized text (Caps Lock)
- Convert blog titles to Title Case
- Format variable names (camelCase/snake_case) for coding
- Standardize database field names
- Prepare text for CSS class names (kebab-case)
3Examples
Uppercase
Input
hello world
Output
HELLO WORLD
Title Case
Input
this is title
Output
This Is Title
?Frequently Asked Questions
What is CamelCase?
camelCase (or lowerCamelCase) starts with a lowercase letter and capitalizes the first letter of each subsequent word, removing spaces. Example: 'myVariableName'. Common in JavaScript and Java.
What is Title Case?
Title Case capitalizes the first letter of each major word. Our tool intelligently keeps small words like 'a', 'an', 'the', 'in', 'on' lowercase unless they start the sentence.