PascalCase (also called UpperCamelCase) joins all words with no spaces and capitalizes the first letter of every word — including the first.
PascalCase is a naming convention where every word in a compound identifier begins with a capital letter, with no spaces or separators. It looks like CamelCase but with the first letter also capitalized. • camelCase: userProfileSettings (first word lowercase) • PascalCase: UserProfileSettings (every word capitalized)
• JavaScript variables/functions → camelCase • JavaScript/TypeScript class names → PascalCase • React component names → PascalCase • Python functions → snake_case • Python class names → PascalCase • C# everything (methods, classes, properties) → PascalCase
In camelCase the first word is lowercase (myClass); in PascalCase every word is capitalized (MyClass). PascalCase is sometimes called UpperCamelCase.
Yes. Paste user_profile_settings → click PascalCase → get UserProfileSettings.
Common style is to treat them as a single word: HtmlParser or UrlBuilder. Our converter capitalizes only the first letter of each word.