Convert text to PascalCase — and see all four developer case formats simultaneously: PascalCase, camelCase, snake_case, and kebab-case.
Fill in the fields or paste your input text. Click Sample to load an example and see the tool in action.
Press the main button to process your input. Results appear instantly — all processing runs in your browser, no upload needed.
Check the output panel. Any errors are shown in a red bar with a clear description so you can fix the input quickly.
Click Copy to copy to clipboard, or Download to save the result as a file.
PascalCase capitalises the first letter of every word and removes all spaces and separators. For example, "user login count" becomes "UserLoginCount". It is also called UpperCamelCase.
PascalCase is the standard for class names, interface names, and type names in most object-oriented languages: JavaScript/TypeScript classes, C# classes and methods, Java classes, PHP classes.
Both join words without spaces. PascalCase capitalises the first letter of every word (MyClass). camelCase keeps the first letter lowercase (myClass). PascalCase is for types/classes; camelCase is for variables and functions.
Numbers are preserved in place. "user123Name" becomes "User123Name". A number at the start of a word is treated as part of that word and does not trigger capitalisation of the next letter.
Developers frequently need the same identifier in multiple case formats — for example, a CSS class in kebab-case, a JS variable in camelCase, and a PHP class in PascalCase. Showing all four means you paste once and copy any format you need.
Yes. All conversion runs locally in your browser. Nothing is sent to any server.