What each conversion type is for
UPPERCASE / lowercase: simple case adjustment for headlines, warnings, or text standardization. Title Case: common in article titles and proper names. Sentence case: normal sentence capitalization, with only the first letter of each sentence uppercase.
camelCase and PascalCase: naming conventions used in programming for variables, functions, and classes, with no spaces between words. snake_case and kebab-case: also used in code, databases, URLs, and file names, joining words with underscores or hyphens. CONSTANT_CASE: the convention for constants in many programming languages.
How to use it
Paste your text in the input field, click the conversion type you want, and the result appears automatically below, ready to copy. Switching types or editing the input updates the result instantly.
Frequently asked questions
What's the difference between camelCase and PascalCase?
In camelCase the first word starts with a lowercase letter (variableName), while in PascalCase every word, including the first, starts with an uppercase letter (ClassName). Both remove spaces and punctuation between words.
When should I use snake_case or kebab-case?
snake_case (with underscores) is common for variable names in Python and databases. kebab-case (with hyphens) is common in URLs, file names, and CSS classes. The choice depends on the convention of the language or tool you're using.
What is Sentence case?
It's the capitalization used in normal sentences: only the first letter of each sentence is uppercase, with the rest of the text in lowercase, like this very text.
Is the text I type sent to a server?
No. All conversion happens locally in your browser, in JavaScript, without sending the content off your device.