HTML Entity for Uppercase R Script Capital (ℛ)

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

What You'll Learn

How to display the script capital R (ℛ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is part of the Letterlike Symbols block and is used in mathematics for script-style R notation—for rings, random variables, or other script letter conventions. Its official Unicode name is SCRIPT CAPITAL R (U+211B).

Render it with ℛ, ℛ, ℛ, or CSS escape \211B. The named entity ℛ is often the most readable option in HTML source. Do not confuse ℛ with (ℜ), (ℝ), or plain R.

⚡ Quick Reference — Uppercase R Script Capital Entity

Unicode U+211B

Letterlike Symbols

Hex Code ℛ

Hexadecimal reference

HTML Code ℛ

Decimal reference

Named Entity ℛ

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+211B
Hex code       ℛ
HTML code      ℛ
Named entity   ℛ
CSS code       \211B
Meaning        Script capital R
Not the same   U+211C = ℜ (ℜ) U+211D = ℝ (ℝ)
Block          Letterlike Symbols (U+2100–U+214F)
1

Complete HTML Example

A simple example showing the script 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: "\211B";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x211B;</p>
<p>Symbol (decimal): &#8475;</p>
<p>Symbol (named): &Rscr;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The script capital R (ℛ) and the named entity &Rscr; are supported in modern browsers when UTF-8 is used:

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

👀 Live Preview

See the script capital R (ℛ) in mathematical and typographic contexts:

Large glyph
Math useScript ring: (ℛ, +, ·)
Named entity&Rscr; renders as ℛ
Not the same asplain R (U+0052)  |  (&real;)  |  (&Ropf;)
Numeric refs&#x211B; &#8475; &Rscr; \211B

🧠 How It Works

1

Hexadecimal Code

&#x211B; uses the Unicode hexadecimal value 211B to display the script capital R. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&Rscr; is the standard named entity for ℛ—readable in source HTML and part of the HTML5 entity set for script letters.

HTML markup
4

CSS Entity

\211B 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+211B sits in Letterlike Symbols. Do not confuse with (real part), (set of reals), or plain R.

Use Cases

The script capital R (ℛ) is commonly used in:

🔢 Mathematical notation

Script-style R for rings, algebras, or other structures in abstract algebra and advanced mathematics.

📊 Probability & statistics

Script capital letters for random variables and stochastic processes in academic texts.

📄 Academic papers

Research papers and journal articles requiring proper script letter typography.

📚 Education

Online courses, textbooks, and tutorials teaching mathematical script notation.

🎨 Typography

Formal mathematical typesetting and design using script capital letterforms.

💻 Web math tools

Equation editors and interactive math apps that render script letters in HTML.

🔬 Scientific docs

Technical documentation and formulas using script R notation.

💡 Best Practices

Do

  • Use &Rscr; 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 script rendering
  • Distinguish ℛ from , , and plain R
  • Use fonts that support Letterlike Symbols characters

Don’t

  • Substitute plain R when ℛ is required for script notation
  • Confuse ℛ (script) with ℜ (&real;, real part) or ℝ (&Ropf;, set of reals)
  • Put CSS escape \211B in HTML text nodes
  • Use \0211B in CSS—the correct escape is \211B
  • Omit UTF-8 encoding on pages with mathematical symbols

Key Takeaways

1

Four references render ℛ; named entity is most readable

&#x211B; &#8475; &Rscr;
2

For CSS stylesheets, use the escape in the content property

\211B
3

Unicode U+211B — SCRIPT CAPITAL R

4

Essential for script mathematical notation; distinct from ℜ and ℝ

❓ Frequently Asked Questions

Use &Rscr; (named), &#x211B; (hex), &#8475; (decimal), or \211B in CSS content. The named entity &Rscr; is the most readable for HTML content.
U+211B (SCRIPT CAPITAL R). Letterlike Symbols block. Hex 211B, decimal 8475. Commonly used for script-style R in mathematical notation.
In mathematical notation, abstract algebra, probability (script random variables), academic papers, scientific documentation, and any content requiring script-style capital R symbols.
HTML code (&#8475; or &#x211B;) or the named entity &Rscr; is used in HTML content. The CSS entity (\211B) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ℛ but in different contexts.
ℛ (U+211B, &Rscr;) is SCRIPT CAPITAL R for general script mathematical notation. (U+211C, &real;) is BLACK-LETTER CAPITAL R for the real-part operator. (U+211D, &Ropf;) is double-struck R for the set of reals. They are distinct symbols with different roles.

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