PascalCase Converter
Capitalize the first letter of every word and remove spaces to create PascalCase strings. Frequently used for Object-Oriented class names and UI components.
Last reviewed: 2026-07-23
Processed locally in your browser. Nothing is sent to a server.
Character count: 0 · Word count: 0 · Line count: 0
How to use
- Input your phrase or existing variable.
- Copy the resulting PascalCase text.
Examples
Component name
Input
user profile card
Output
UserProfileCard
PascalCase vs camelCase
PascalCase is identical to camelCase, except the very first letter is also capitalized. While camelCase is used for instances and variables, PascalCase is strictly used for Types, Interfaces, Classes, and React Components.
Frequently asked questions
Is my data uploaded?+
No. Code and data tools run locally in your browser whenever possible.
Related guides
Learn more about this topic in our blog.
Developer
What Is camelCase? A Developer's Guide
camelCase joins words without spaces or underscores. See how it works in JavaScript, JSON, and API fields — and how it differs from PascalCase and snake_case.
Developer
The Complete Guide to Developer Naming Conventions
camelCase, PascalCase, snake_case, kebab-case, and dot.case — when to use each style, with examples for JavaScript, Python, URLs, databases, and APIs.