Common Time Converter Writing Cases
Here’s a breakdown of common text writing cases, with examples:
-
Sentence case
- Only the first word and proper nouns are capitalized.
- Example: "This is an example of sentence case." -
Title Case
- The first letter of each major word is capitalized.
- Example: "This Is an Example of Title Case." -
Uppercase (All Caps)
- Every letter is capitalized.
- Example: "THIS IS AN EXAMPLE OF UPPERCASE." -
Lowercase
- No capitalization is used at all.
- Example: "this is an example of lowercase." -
Camel Case
- Used often in programming; the first letter of each word is capitalized except the first word, with no spaces.
- Example: "thisIsAnExampleOfCamelCase." -
Pascal Case
- Similar to Camel Case but with the first letter of every word capitalized, often used in programming.
- Example: "ThisIsAnExampleOfPascalCase." -
Snake Case
- Words are all lowercase, separated by underscores, often used in programming.
- Example: "this_is_an_example_of_snake_case." -
Kebab Case
- Similar to Snake Case but uses hyphens instead of underscores, often used in URLs. - Example: "this-is-an-example-of-kebab-case."