Converter Web ToolsConverter WebTools

Upper Camel Case Converter

Convert text to UpperCamelCase instantly in your browser.

Input
Output
Share Link
Settings

What is UpperCamelCase?

UpperCamelCase — better known as PascalCase — joins words with no spaces and capitalizes the first letter of every word, including the first, like FirstName or OrderService. It is the conventional naming style for classes, types and components in many languages (C#, Java, TypeScript, React). This tool converts any text to PascalCase instantly in your browser.

How to use

  1. Paste your text into the input box.
  2. The UpperCamelCase result appears instantly.
  3. Click Copy to use it.

Examples

InputPascalCase
first nameFirstName
order serviceOrderService
user_idUserId
html parserHtmlParser

Common uses

  • Naming classes, types and interfaces.
  • React/Vue component names.
  • Converting labels into type or class identifiers.

Frequently asked questions

PascalCase vs camelCase?
PascalCase capitalizes the first word (FirstName); camelCase does not (firstName).
What happens to separators?
Spaces, underscores and hyphens are removed and treated as word boundaries.
Where is PascalCase used?
Typically for classes, types and UI components.