Case Converter

Loading... Thanks for your rating!
Updated: 2026-07-11

🔤 Text Case Converter

📖 Frequently Asked Questions

What's the difference between camelCase and PascalCase?

PascalCase capitalizes every first letter (e.g., MyClassName) — used for classes. camelCase starts lowercase then capitalizes (e.g., myVariableName) — used for variables/functions. This tool supports both.

What's the difference between snake_case and SCREAMING_SNAKE_CASE?

snake_case (my_variable_name) — lowercase with underscores, for Python/C variables. SCREAMING_SNAKE_CASE (MAX_BUFFER_SIZE) — uppercase with underscores, for constants and env variables.

What is a case converter used for?

Common uses: standardizing text from different sources, converting database column names to code variables, batch-converting API field naming styles, normalizing user input, refactoring naming conventions, and formatting article titles.

How do I use the converted result?

Each card has a copy button (📋) to copy to clipboard. Conversions are real-time as you type. You can also select text directly from any result card.

Does this support Chinese text?

This tool is optimized for English and programming naming conventions. Chinese characters remain unchanged. camelCase/snake_case work best with English or identifier text.