Type a single line and get camelCase, snake_case, kebab-case and 12 case formats at the same time. Click any card to copy it instantly.
camelCase starts the first word in lowercase and capitalizes the first letter of each following word (myVariableName). PascalCase capitalizes the first letter of every word (MyVariableName). camelCase is typically used for variables and functions, while PascalCase is used for classes and types.
snake_case is common for Python variables and database columns, kebab-case for URLs, CSS classes and file names, and CONSTANT_CASE (upper snake case) for constants and environment variable names.
No. Every conversion runs entirely in your browser, and no data is ever sent to or stored on a server. It even works while you are offline.
Yes. Paste multiple lines and each line is converted individually while line breaks are preserved. It is handy for renaming a whole list of identifiers at once.