PascalCase Converter

Capitalize every word and remove the spaces, as in UserAccount or OrderHistory.

0 words · 0 characters

Example

Before
user account
order_history
nav-menu-item
After
UserAccount
OrderHistory
NavMenuItem

Where PascalCase is used

PascalCase, also called UpperCamelCase, is the convention for class names in most languages, for types and components in TypeScript and React, and for public members in C#.

One name per line

Each line is converted separately. Existing camelCase, snake_case, and kebab-case input is split into words correctly before converting.