Input Text
Advertisement Space
728 x 90About Text Case Conversion
- UPPERCASE: Converts all letters to uppercase. Useful for headings or emphasis.
- lowercase: Converts all letters to lowercase. Useful for normalizing text.
- Title Case: Capitalizes the first letter of each word. Useful for titles and headings.
- Sentence Case: Capitalizes the first letter of each sentence. Useful for proper text formatting.
- Capitalized Case: Capitalizes the first character of each word. Similar to Title Case but doesn't handle exceptions.
- Alternating Case: Alternates between uppercase and lowercase letters. Creates a unique visual effect.
- Inverse Case: Inverts the case of each character (uppercase becomes lowercase and vice versa).
- snake_case: Converts text to lowercase with underscores between words. Common in programming.
- camelCase: Capitalizes the first letter of each word except the first one. Common in programming.
- PascalCase: Capitalizes the first letter of each word. Common in programming for class names.
- kebab-case: Converts text to lowercase with hyphens between words. Common in URLs and CSS.
- dot.case: Converts text to lowercase with periods between words. Less common but used in some contexts.