HTML Entity for Uppercase R Black Letter Capital (ℜ)

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

What You'll Learn

How to display the black-letter capital R (ℜ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is part of the Letterlike Symbols block and is widely used in mathematics to denote the real part of a complex number. Its official Unicode name is BLACK-LETTER CAPITAL R (U+211C).

Render it with ℜ, ℜ, ℜ, or CSS escape \211C. The named entity ℜ is the most readable option in HTML source. It pairs with (ℑ) for the imaginary part. See also math entities.

⚡ Quick Reference — Uppercase R Black Letter Capital Entity

Unicode U+211C

Letterlike Symbols

Hex Code ℜ

Hexadecimal reference

HTML Code ℜ

Decimal reference

Named Entity ℜ

Real part symbol

Reference Table
Name           Value
────────────   ──────────
Unicode        U+211C
Hex code       ℜ
HTML code      ℜ
Named entity   ℜ
CSS code       \211C
Meaning        Black-letter capital R (real part)
Related        U+2111 = ℑ (ℑ, imaginary part)
Block          Letterlike Symbols (U+2100–U+214F)
1

Complete HTML Example

A simple example showing the black-letter capital R (ℜ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\211C";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x211C;</p>
<p>Symbol (decimal): &#8476;</p>
<p>Symbol (named): &real;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The black-letter capital R (ℜ) and the named entity &real; are supported in modern browsers when UTF-8 is used:

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

👀 Live Preview

See the black-letter capital R (ℜ) in mathematical and typographic contexts:

Large glyph
Complex numbersz = a + bi → ℜ(z) = a
Named entity&real; renders as ℜ
Pair with (&image;, imaginary part)
Not the same asplain R (U+0052)  |  ℝ (double-struck set of reals)
Numeric refs&#x211C; &#8476; &real; \211C

🧠 How It Works

1

Hexadecimal Code

&#x211C; uses the Unicode hexadecimal value 211C to display the black-letter capital R. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&real; is the standard named entity for ℜ—it denotes the real-part operator in mathematics.

HTML markup
4

CSS Entity

\211C 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+211C sits in Letterlike Symbols. Do not confuse with plain R (U+0052) or ℝ (double-struck ℝ for the set of reals).

Use Cases

The black-letter capital R (ℜ) is commonly used in:

📐 Complex analysis

Real-part operator ℜ(z) in equations involving complex numbers and signal processing.

🔬 Engineering

Electrical engineering, control theory, and physics documentation using complex notation.

📄 Academic papers

Research papers and scholarly publications in mathematics and mathematical physics.

📚 Textbooks

Mathematics and science textbooks teaching complex numbers and Fourier analysis.

🎨 Typography

Black-letter (Fraktur-style) R in formal mathematical typesetting and design.

💻 Web publishing

Online courses, scientific blogs, and interactive math tools needing proper ℜ rendering.

🔍 Documentation

Technical specs and API docs for libraries that work with complex-valued data.

💡 Best Practices

Do

  • Use &real; in HTML when possible for readability in math content
  • Serve pages as UTF-8; you can also type ℜ directly in UTF-8 source
  • Use math-friendly fonts (e.g. Cambria Math, STIX) for reliable black-letter glyph display
  • Distinguish ℜ (real part) from plain R (U+0052) and ℝ (double-struck ℝ)
  • Pair with (&image;) for complete complex-number notation

Don’t

  • Substitute plain R when ℜ is required for real-part notation
  • Confuse ℜ (real-part operator) with ℝ (double-struck set of reals)
  • Put CSS escape \211C in HTML text nodes
  • Use padded Unicode notation like U+0211C—the correct value is U+211C
  • Use \0211C in CSS—the correct escape is \211C

Key Takeaways

1

Four references render ℜ; named entity is most readable

&#x211C; &#8476; &real;
2

For CSS stylesheets, use the escape in the content property

\211C
3

Unicode U+211C — BLACK-LETTER CAPITAL R

4

Essential for real-part notation; pairs with ℑ (&image;)

❓ Frequently Asked Questions

Use &real; (named), &#x211C; (hex), &#8476; (decimal), or \211C in CSS content. The named entity &real; is the most readable for HTML content.
U+211C (BLACK-LETTER CAPITAL R). Letterlike Symbols block. Hex 211C, decimal 8476. Used in mathematics to denote the real part of a complex number.
In mathematical notation for complex numbers, academic papers, scientific documentation, engineering content, and any material requiring the real-part operator.
HTML code (&#8476; or &#x211C;) or the named entity &real; is used in HTML content. The CSS entity (\211C) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ℜ but in different contexts.
The black-letter capital R (ℜ) represents the real part of a complex number. For z = a + bi, ℜ(z) = a. It is used alongside for the imaginary part in complex analysis, engineering, and mathematical physics.

Explore More HTML Entities!

Discover 1500+ HTML character references — math symbols, script letters, 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