π Case Converter
βΉοΈ About Case Styles
Sentence case
Capitalizes the first letter of the first word in each sentence. Example: "This is a sentence. And another one."
lower case
Converts all letters to lowercase. Example: "this text is all lowercase"
UPPER CASE
Converts all letters to uppercase. Example: "THIS TEXT IS ALL UPPERCASE"
Title Case
Capitalizes the First Letter of Each Word. Example: "This Is Title Case"
camelCase
Removes spaces and capitalizes each word after the first. Example: "thisIsCamelCase"
PascalCase
Like camelCase but capitalizes the first word too. Example: "ThisIsPascalCase"
snake_case
Replaces spaces with underscores. Example: "this_is_snake_case"
kebab-case
Replaces spaces with hyphens. Example: "this-is-kebab-case"
tOGGLE cASE
Inverts the case of each letter. Example: "tHIS IS tOGGLE cASE"