Case Converter

Convert text between different cases instantly.

How to Use

  1. 1Paste or type your text into the input area.
  2. 2Click the button for the case style you want to apply.
  3. 3View the converted text in the output area.
  4. 4Copy the result to your clipboard with one click.

Frequently Asked Questions

What is the difference between camelCase and PascalCase?

In camelCase, the first word starts lowercase and subsequent words are capitalized: myVariableName. In PascalCase, every word starts uppercase: MyVariableName. CamelCase is common for variables; PascalCase for class names.

What is kebab-case used for?

Kebab-case (also called dash-case) uses lowercase words separated by hyphens: my-component-name. It is commonly used in URLs, CSS class names, and file names in web development.

Does the converter handle acronyms correctly?

Yes. Common acronyms like HTML, CSS, and API are recognized and handled appropriately. For example, converting 'parseHTML' to snake_case produces 'parse_html' rather than splitting each letter.