HTML Entity for Uppercase C Double Struck (ℂ)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+2102

What You'll Learn

How to display the uppercase C double struck (ℂ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This mathematical symbol denotes the set of complex numbers in algebra and analysis, commonly written as in equations such as z ∈ ℂ. It is U+2102 in the Letterlike Symbols block (U+2100–U+214F).

Render it with ℂ, ℂ, ℂ, or CSS escape \2102. The named entity ℂ is often the most readable option; &Complexes; is a semantic alias for the same character. See also math entities.

⚡ Quick Reference — Uppercase C Double Struck Entity

Unicode U+2102

Letterlike Symbols

Hex Code ℂ

Hexadecimal reference

HTML Code ℂ

Decimal reference

Named Entity ℂ

Also &Complexes;

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2102
Hex code       ℂ
HTML code      ℂ
Named entity   ℂ (alias &Complexes;)
CSS code       \2102
Meaning        Double-struck capital C (complex numbers)
Related        U+0043 = plain C; U+010A = Ċ (C dot above)
Block          Letterlike Symbols (U+2100–U+214F)
1

Complete HTML Example

A simple example showing the uppercase C double struck (ℂ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2102";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2102;</p>
<p>Symbol (decimal): &#8450;</p>
<p>Symbol (named): &Copf;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The uppercase C double struck (ℂ) and the named entity &Copf; are supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the uppercase C double struck (ℂ) in mathematical notation:

Large glyph
Set notationℂ = {a + bi : a, b ∈ ℝ}
Named entities&Copf; and &Complexes; render as ℂ
Not the same asplain C (U+0043) or Ċ (C dot above)
Numeric refs&#x2102; &#8450; &Copf; \2102

🧠 How It Works

1

Hexadecimal Code

&#x2102; uses the Unicode hexadecimal value 2102 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8450; uses the decimal Unicode value 8450 to display the same character. A common method for Letterlike Symbols.

HTML markup
3

Named Entity

&Copf; is the standard named entity for ℂ—readable in source HTML. &Complexes; is a semantic alias for the same character.

HTML markup
4

CSS Entity

\2102 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: . Unicode U+2102 sits in Letterlike Symbols. Do not confuse with plain C (U+0043) or Ċ (C dot above, U+010A). Use math-friendly fonts for best rendering.

Use Cases

The uppercase C double struck (ℂ) is commonly used in:

🔢 Complex numbers

Denote the set of complex numbers ℂ in algebra, analysis, and engineering mathematics.

📊 Set theory

Represent number sets alongside ℝ (reals), ℚ (rationals), and ℤ (integers) in mathematical notation.

📚 Educational content

Textbooks, online courses, and tutorials explaining complex numbers and field extensions.

📄 Academic publishing

Research papers, theses, and journal articles in mathematics, physics, and engineering.

💻 Web math tools

Equation editors, calculators, and interactive math apps that render set notation in HTML.

🔬 Scientific documentation

Signal processing, control theory, and physics content using complex-valued functions.

🎨 Typography

Showcase Letterlike Symbols and math font coverage in type design demos.

💡 Best Practices

Do

  • Use &Copf; or &Complexes; in HTML when possible for readability
  • Serve pages as UTF-8; you can also type ℂ directly in UTF-8 source
  • Use math-friendly fonts (e.g. Cambria Math, STIX Two Math) for clear double-struck rendering
  • Use fonts that support Letterlike Symbols characters
  • Distinguish ℂ (U+2102) from plain C (U+0043) and Ċ (C dot above)

Don’t

  • Substitute plain C when ℂ is required for correct mathematical notation
  • Confuse ℂ (double-struck) with Ċ (C dot above—different character)
  • Put CSS escape \2102 in HTML text nodes
  • Assume all fonts render Letterlike Symbols identically
  • Omit UTF-8 encoding on pages with accented characters

Key Takeaways

1

Four references render ℂ; named entity is most readable

&#x2102; &#8450; &Copf;
2

For CSS stylesheets, use the escape in the content property

\2102
3

Unicode U+2102 — DOUBLE-STRUCK CAPITAL C

4

Essential for complex numbers, set theory, and mathematical content

❓ Frequently Asked Questions

Use &Copf; (named), &#x2102; (hex), &#8450; (decimal), or \2102 in CSS content. The named entity &Copf; is the most readable for HTML content.
U+2102 (DOUBLE-STRUCK CAPITAL C). Letterlike Symbols block. Hex 2102, decimal 8450. Commonly used to represent the set of complex numbers.
When writing mathematical content, complex number notation, set theory, academic papers, scientific documentation, educational materials, and any text requiring the double-struck C symbol.
HTML code (&#8450; or &#x2102;) or the named entity &Copf; is used in HTML content. The CSS entity (\2102) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ℂ but in different contexts.
Yes. Both &Copf; and &Complexes; render ℂ (U+2102). &Complexes; is a semantic alias that explicitly denotes the set of complex numbers.
Yes. The named HTML entity is &Copf;. &Complexes; is an alias for the same character. You can also use &#8450; or &#x2102; for numeric references.

Explore More HTML Entities!

Discover 1500+ HTML character references — accented letters, symbols, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful