Dev

PascalCase Converter

Input

Converts any format (camelCase, snake_case, kebab-case, spaces) to PascalCase. One conversion per line.

PascalCase Output

HelloWorldsnake_case
MyVariableNamecamelCase
KebabStyleNamekebab-case
SomeRandomText

Existing naming styles are detected per line for quick review.

Frequently Asked Questions

What is PascalCase?
PascalCase (also UpperCamelCase) capitalizes the first letter of every word with no separators: UserFirstName, TotalPriceAfterTax. Standard for class names, constructors, type aliases, React component names, and C# identifiers.
What inputs does this converter accept?
Space-separated words, camelCase, snake_case, kebab-case, and mixed formats are all converted to PascalCase. Each word boundary is detected and the first letter capitalized.
Is PascalCase the same as Title Case?
Similar but not identical. Title Case capitalizes the first letter of each word but preserves spaces: 'User First Name'. PascalCase removes all spaces and delimiters: 'UserFirstName'. Title Case is for display text; PascalCase is for code identifiers.