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.
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.
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.
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.
This tool is optimized for English and programming naming conventions. Chinese characters remain unchanged. camelCase/snake_case work best with English or identifier text.