Mastering Text Formatting
Whether you left the Caps Lock key on by accident, or you're a programmer trying to reformat a list of variables, our Case Converter tool handles it instantly.
Supported Formats
- Sentence case: Capitalizes only the first letter of each sentence. Perfect for fixing aggressively capitalized essays.
- lowercase: Converts everything to lower case letters.
- UPPERCASE: Converts everything to upper case letters.
- Title Case: Capitalizes the first letter of every single word. Common for blog post titles and headlines.
Developer Formats
- camelCase: Removes spaces and capitalizes the first letter of each word (except the first one). Extremely common for naming variables in JavaScript and Java. Example:
myVariableName - snake_case: Replaces spaces with underscores and makes everything lowercase. The standard for Python and database column names. Example:
my_variable_name - kebab-case: Replaces spaces with hyphens. Required for HTML attributes and CSS classes. Example:
my-css-class