HTML Entity for Uppercase R Script Capital (ℛ)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+211B

What Is the Uppercase R Script Capital Entity?

Uppercase R Script Capital (ℛ) is the Unicode character at U+211B (SCRIPT CAPITAL R). HTML5 names it ℛ (also ℛ). Use it for mathematical script notation and formal typography.

Remember
Character     ℛ
Unicode       U+211B
Hex entity    ℛ
Decimal       ℛ
Named entity  ℛ (ℛ)
CSS escape    \211B
Official name SCRIPT CAPITAL R
Block         Letterlike Symbols

Prefer ℛ or ℛ in HTML markup. Do not confuse with plain R (U+0052) or ℜ (U+211C).

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Direct characterℛHTML text (UTF-8)
Named entityℛHTML markup — preferred for readability
Alternate nameℛSame glyph as ℛ
Hex entityℛHTML markup
Decimal entityℛHTML markup
CSS escape\211BStylesheet content

When to Use Which

SituationUse
Math script notationℛ or ℛ
Need numeric formℛ or ℛ
Generated text via ::before / ::aftercontent: "\211B"
Real-part symbolℜ (U+211C) — not this character
Ordinary capital letter RUse R (U+0052)

Live Preview

Script capital R in math context, compared with plain R and related look-alikes.

Math ℛ(x) denotes a function of x
Large glyph ℛ
Named entity ℛ → ℛ
vs look-alikes ℛ  |  R  |  ℜ
With entities Named: ℛ | Hex: ℛ | Decimal: ℛ

Complete HTML Example

One page that shows Uppercase R Script Capital with named, hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Named + Hex + Decimal + CSS + Typed

Five ways to display ℛ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Uppercase R Script Capital (ℛ)</title>
  <style>
    #point::after {
      content: "\211B";
    }
  </style>
</head>
<body>
  <p>Built with Named: &Rscr;</p>
  <p>Built with Hex: &#x211B;</p>
  <p>Built with Decimal: &#8475;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ℛ</p>
  <p>Math: &Rscr;(x)</p>
</body>
</html>
Try It Yourself

How It Works

1. Named: &Rscr; is the HTML5 name for U+211B → ℛ (case-sensitive). &realine; is an alternate name for the same glyph.

2. Hex: &#x211B; inserts the same code point. Same visual as named.

3. Decimal: &#8475; is the base-10 form of U+211B.

4. CSS: use \211B in content (not an HTML entity). #point::after appends that glyph after the paragraph text.

5. Typed: paste ℛ in a UTF-8 document, or write math text with &Rscr;.

Pitfalls & Tips

Common mistakes when working with this character.

Named

Prefer &Rscr;

The name is case-sensitive. &Rscr; and &realine; both render ℛ. Prefer &Rscr; for shorter, clearer source.

Look-alikes

Not &real; and not plain R

Script capital R is &Rscr; (U+211B). Plain Latin is R. Black-letter / real-part is &real; (U+211C). Match the notation you need.

Semantics

Prefer the letterlike symbol

Prefer U+211B (or &Rscr;) over styling a plain R with a script font when the semantics require the letterlike symbol.

Fonts

Check Letterlike coverage

Some fonts omit U+211B. If the glyph is missing, switch to a font with Letterlike Symbols support.

CSS vs HTML

Do not mix escapes

\211B belongs in CSS. &Rscr; / &#x211B; / &#8475; belong in HTML.

Semicolon

End references

Always finish with ; — write &Rscr;, not &Rscr.

Browser Support

Uppercase R Script Capital (U+211B) and its entity forms (&Rscr;, &#x211B;, &#8475;, CSS \\211B) are supported in all modern browsers. Glyph coverage depends on the font.

✓ Universal support

Uppercase R Script Capital

Encode with named, hex, decimal, or CSS escape — or type ℛ directly in UTF-8 HTML. Prefer &Rscr; or &#x211B;.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+211B / entities Full support

Bottom line: Prefer &Rscr; or &#x211B; for readable HTML. Use \\211B only inside CSS content. Do not confuse with plain R or &real; ℜ.

Key Takeaways

  • Unicode: this character is U+211B (decimal 8475) — SCRIPT CAPITAL R.
  • HTML: prefer &Rscr; — or use &#x211B; / &#8475; (also &realine;).
  • CSS: use \211B inside content for generated text.
  • Watch out: &Rscr; (ℛ) ≠ plain R ≠ &real; ℜ.

One line: U+211B → &Rscr; / &#x211B; / &#8475; / CSS \211B.

Frequently Asked Questions

Use &Rscr; (named), &#x211B; (hex), &#8475; (decimal), or the CSS escape \211B in the content property. All render ℛ. Prefer &Rscr; or &#x211B; for readable markup. &realine; is an alternate name for the same character.
U+211B (SCRIPT CAPITAL R). Hex 211B, decimal 8475, named entities &Rscr; and &realine;. It belongs to Letterlike Symbols (U+2100–U+214F).
Yes. HTML5 defines &Rscr; and &realine; for U+211B. Prefer &Rscr; for general use. Both are case-sensitive.
U+211B is a letterlike script capital R used in math typography. U+0052 is plain Latin capital R. U+211C (&real; / &Re;) is black-letter capital R, often used for the real part — a different character.
Use it for mathematical script notation and formal typography that needs ℛ — not as a substitute for plain R, and not when you need the real-part symbol ℜ (U+211C).
HTML entities (&Rscr;, &#8475;, or &#x211B;) go in markup. The CSS escape \211B is used in stylesheets (usually in the content property of ::before/::after). Both render ℛ.

Did you know?

Uppercase R Script Capital is Unicode U+211B (decimal 8475) — glyph ℛ (SCRIPT CAPITAL R) in Letterlike Symbols. HTML5 names it &Rscr; (also &realine;). Prefer it for mathematical script notation. Do not confuse it with plain R (U+0052) or black-letter capital R / real-part symbol &real; (U+211C).

Next: Uppercase R Stroke

Learn the HTML entity for Uppercase R Stroke — next in this sequence.

Continue tutorial →

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