The 10+ Case Formats Explained: UPPER, lower, Title, Sentence, camelCase, snake_case
- UPPERCASE converts every letter to capitals (HELLO WORLD).
- lowercase converts every letter to small (hello world).
- Title Case capitalizes the first letter of each word (Hello World).
- Sentence case capitalizes only the first letter of the whole string (Hello world).
- camelCase joins words with no separator, lowercasing the first word and capitalizing subsequent words (helloWorld).
- PascalCase is the same as camelCase but capitalizes the first word too (HelloWorld).
- snake_case lowercases all letters and joins with underscores (hello_world).
- kebab-case lowercases all letters and joins with hyphens (hello-world).
- CONSTANT_CASE uppercases all letters and joins with underscores (HELLO_WORLD).
- dot.case lowercases and joins with periods (hello.world).
- Alternating case alternates upper and lower letter by letter (hElLo WoRlD).
Each format encodes both a separator rule and a capitalization rule, and our converter handles all combinations of input format to output format.