π€ Text Case Converter
Instantly convert text between any case format: UPPER, lower, Title, Sentence, camelCase, PascalCase, snake_case, kebab-case, and more.
FAQ
What is camelCase?
camelCase joins words without spaces, capitalizing the first letter of each word except the first (e.g., myVariableName). It is widely used in JavaScript, Java, and Swift for variable and function names.
What is PascalCase?
PascalCase (also called UpperCamelCase) capitalizes the first letter of every word including the first (e.g., MyClassName). It is used for class names in most object-oriented languages.
What is snake_case?
snake_case replaces spaces with underscores and lowercases all letters (e.g., my_variable_name). It is the convention in Python, Ruby, and SQL column names.
What is kebab-case?
kebab-case replaces spaces with hyphens and lowercases all letters (e.g., my-variable-name). It is used in URLs, CSS class names, and HTML attributes like data-my-value.
What is Title Case?
Title Case capitalizes the first letter of each word (e.g., The Quick Brown Fox). This tool uses a basic per-word capitalization without filtering conjunctions or prepositions.
What is Sentence case?
Sentence case capitalizes only the first letter of the entire text (and the first letter after each period, exclamation mark, or question mark), leaving all other letters lowercase. It mirrors normal written prose.