Pascal Case Converter

Transform text to PascalCase where every word starts with a capital letter and no separators are used. Common in C# and .NET.

Advertisement

Examples

PascalCase

Input:

hello world example

Output:

HelloWorldExample

How to Use Pascal Case Converter

  1. 1Paste your text
  2. 2Click Convert to PascalCase
  3. 3Copy the result

Frequently Asked Questions

How is PascalCase different from camelCase?

PascalCase capitalizes the first word too (HelloWorld), while camelCase starts lowercase (helloWorld).