Case Converter
Convert text to uppercase, lowercase, title case, camelCase, snake_case, and more.
Advertisement
Frequently Asked Questions
camelCase is a naming convention where the first word is lowercase and each subsequent word starts with an uppercase letter (e.g., "camelCaseExample"). It is commonly used in programming for variable and function names.
snake_case uses underscores between words (e.g., "snake_case_example") and is popular in Python and Ruby. kebab-case uses hyphens between words (e.g., "kebab-case-example") and is commonly used in URLs and CSS.
Title Case capitalizes the first letter of each word while keeping the remaining letters lowercase (e.g., "Title Case Example"). It is commonly used for titles and headings.
Yes. Click on the output area to select all the converted text, then use Ctrl+C (or Cmd+C on Mac) to copy it to your clipboard.
Advertisement