Back to Case Converter

PascalCase Converter

Convert your text to PascalCase instantly using our Case Converter tool. Perfect for class names and React components.

What is PascalCase?

PascalCase (also known as UpperCamelCase) is a naming convention where every word starts with a capital letter, including the first word. It is widely used in programming for class names, type definitions, and component identifiers. React and Next.js components must use PascalCase to be recognized as custom JSX elements.

Examples

Input

user profile

PascalCase

UserProfile
React/Next.js component

Input

api response

PascalCase

ApiResponse
TypeScript interface

Input

get user query

PascalCase

GetUserQuery
Class definition