HTML Entity for Uppercase R Double Struck Capital (ℝ)

What You'll Learn
How to display the uppercase R double struck capital (ℝ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This mathematical symbol denotes the set of real numbers, commonly written as ℝ in equations such as x ∈ ℝ. It is U+211D in the Letterlike Symbols block (U+2100–U+214F).
Render it with ℝ, ℝ, ℝ, or CSS escape \211D. The named entity ℝ is often the most readable option in HTML source. Do not confuse with ℜ (ℜ, real-part operator). See also math entities.
⚡ Quick Reference — Uppercase R Double Struck Capital Entity
U+211DLetterlike Symbols
ℝHexadecimal reference
ℝDecimal reference
ℝMost readable option
Name Value
──────────── ──────────
Unicode U+211D
Hex code ℝ
HTML code ℝ
Named entity ℝ
CSS code \211D
Meaning Double-struck capital R (real numbers)
Related U+211C = ℜ (ℜ, real-part operator)
Block Letterlike Symbols (U+2100–U+214F)Complete HTML Example
A simple example showing the uppercase R double struck capital (ℝ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\211D";
}
</style>
</head>
<body>
<p>Symbol (hex): ℝ</p>
<p>Symbol (decimal): ℝ</p>
<p>Symbol (named): ℝ</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The uppercase R double struck capital (ℝ) and the named entity ℝ are supported in all modern browsers:
👀 Live Preview
See the uppercase R double struck capital (ℝ) in mathematical notation:
🧠 How It Works
Hexadecimal Code
ℝ uses the Unicode hexadecimal value 211D to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
ℝ uses the decimal Unicode value 8477 to display the same character. A common method for Letterlike Symbols.
Named Entity
ℝ is the standard named entity for ℝ—readable in source HTML and part of the HTML5 entity set for blackboard bold letters.
CSS Entity
\211D is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ℝ. Unicode U+211D sits in Letterlike Symbols. Do not confuse with plain R (U+0052) or ℜ (real-part operator). Use math-friendly fonts for best rendering.
Use Cases
The uppercase R double struck capital (ℝ) is commonly used in:
Denote the set of real numbers ℝ in algebra, analysis, and calculus.
Textbooks, online courses, and tutorials explaining number systems and blackboard bold notation.
Research papers, theses, and journal articles in mathematics, physics, and engineering.
Equation editors, calculators, and interactive math apps that render set notation in HTML.
Technical documentation and formulas involving fields, limits, continuity, and real analysis.
API docs, developer guides, and content explaining mathematical concepts involving real-valued data.
💡 Best Practices
Do
- Use
ℝ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
- Distinguish ℝ (set of reals) from ℜ (real-part operator) and plain
R(U+0052) - Use fonts that support Letterlike Symbols characters
Don’t
- Substitute plain
Rwhen ℝ is required for correct mathematical notation - Confuse ℝ (double-struck set) with ℜ (
ℜ, real-part operator) - Put CSS escape
\211Din HTML text nodes - Use
\0211Din CSS—the correct escape is\211D - Omit UTF-8 encoding on pages with mathematical symbols
Key Takeaways
Four references render ℝ; named entity is most readable
ℝ ℝ ℝFor CSS stylesheets, use the escape in the content property
\211DUnicode U+211D — DOUBLE-STRUCK CAPITAL R
Essential for real numbers, set theory, and mathematical content
Previous: Uppercase R Double Grave (Ȑ) Next: Uppercase R Inverted Breve
❓ Frequently Asked Questions
ℝ (named), ℝ (hex), ℝ (decimal), or \211D in CSS content. The named entity ℝ is the most readable for HTML content.U+211D (DOUBLE-STRUCK CAPITAL R). Letterlike Symbols block. Hex 211D, decimal 8477. Commonly used to represent the set of real numbers.ℝ or ℝ) or the named entity ℝ is used in HTML content. The CSS entity (\211D) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ℝ but in different contexts.Explore More HTML Entities!
Discover 1500+ HTML character references — math symbols, diacritics, and more.
8 people found this page helpful
