๐ฏ
9 Case Formats
UPPER, lower, Title, Sentence, camelCase, PascalCase, snake_case, kebab-case, and alternating.
โก
Instant Conversion
Text is converted in real-time as you type โ no need to press any button.
๐จโ๐ป
Developer Friendly
camelCase, PascalCase, snake_case, and kebab-case for code naming conventions.
๐
Private & Offline
All processing is done locally in your browser. Your text never leaves your device.
Frequently Asked Questions
What is camelCase?โผ
camelCase is a naming convention where the first word is lowercase and each subsequent word starts with an uppercase letter (e.g., myVariableName). It is commonly used in JavaScript and many other programming languages.
What is snake_case?โผ
snake_case uses underscores to separate words, with all letters in lowercase (e.g., my_variable_name). It is popular in Python and database column names.
What is title case?โผ
Title case capitalizes the first letter of each major word. Short function words like 'a', 'an', 'the', 'and', 'but' are typically not capitalized unless they are the first word.
What is kebab-case?โผ
Kebab-case uses hyphens to separate words, with all letters in lowercase (e.g., my-variable-name). It is commonly used in URLs, CSS class names, and HTML attributes.
What is the difference between sentence case and title case?โผ
Sentence case only capitalizes the first letter of the first word. Title case capitalizes the first letter of most words. Sentence case is used in regular writing; title case is used in headings.