HTML Entity for Uppercase E Script Capital (ℰ)

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

What You'll Learn

How to display the script capital E (ℰ) in HTML using named entity, hexadecimal, decimal, and CSS escape methods. This character is part of the Letterlike Symbols block and is used in mathematical notation, including as an expectation operator in probability. Its official Unicode name is SCRIPT CAPITAL E (U+2130).

Render it with ℰ, ℰ, ℰ, or CSS escape \2130. The named entity ℰ is often the most readable option in HTML source.

⚡ Quick Reference — Uppercase E Script Capital Entity

Unicode U+2130

Letterlike Symbols

Hex Code ℰ

Hexadecimal reference

HTML Code ℰ

Decimal reference

Named Entity ℰ

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2130
Hex code       ℰ
HTML code      ℰ
Named entity   ℰ
CSS code       \2130
Meaning        Script capital E
Related        U+2131 = ℱ (script F); U+212C = ℬ (script B)
Block          Letterlike Symbols (U+2100–U+214F)
1

Complete HTML Example

A simple example showing the script capital E (ℰ) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

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

🌐 Browser Support

The script capital E (ℰ) and the named entity &Escr; 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 E (ℰ) in mathematical and typographic contexts:

Large glyph
Expectationℰ[X] = expected value
Script letters ℰ ℱ
Named entity&Escr; renders as ℰ
Numeric refs&#x2130; &#8496; &Escr; \2130

🧠 How It Works

1

Hexadecimal Code

&#x2130; uses the Unicode hexadecimal value 2130 to display the script capital E. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&Escr; is the standard named entity for ℰ—readable in source HTML and part of the HTML5 entity set.

HTML markup
4

CSS Entity

\2130 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+2130 sits in Letterlike Symbols. Do not confuse with plain E (U+0045) or script small e &escr; (U+212F).

Use Cases

The script capital E (ℰ) is commonly used in:

📐 Mathematical notation

Script-style capital E in equations, probability, and formal mathematical writing.

📊 Expectation operator

Used as ℰ[X] for expected value in statistics and probability theory.

🎨 Typography

Elegant script lettering in calligraphy, invitations, and formal design projects.

📄 Academic papers

Scholarly documents and research papers using script letter notation.

📚 Education

Math and statistics courses teaching expectation and script letter conventions.

🌐 Web publishing

Scientific blogs and online textbooks that need proper script E rendering.

🔍 Search & SEO

Correct rendering so mathematical content can be found and indexed accurately.

💡 Best Practices

Do

  • Use &Escr; 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) for reliable script glyph display
  • Distinguish ℰ (script E) from plain E (U+0045)
  • Pick one entity style (named, hex, or decimal) per project for consistency

Don’t

  • Substitute plain E when ℰ is required in math notation
  • Put CSS escape \2130 in HTML text nodes
  • Use padded Unicode notation like U+02130—the correct value is U+2130
  • Use \02130 in CSS—the correct escape is \2130
  • Assume all fonts render Letterlike Symbols identically

Key Takeaways

1

Four references render ℰ; named entity is most readable

&#x2130; &#8496; &Escr;
2

For CSS stylesheets, use the escape in the content property

\2130
3

Unicode U+2130 — SCRIPT CAPITAL E

4

Used in math notation, expectation formulas, and elegant typography

❓ Frequently Asked Questions

Use &Escr; (named), &#x2130; (hex), &#8496; (decimal), or \2130 in CSS content. The named entity &Escr; is the most readable for HTML content.
U+2130 (SCRIPT CAPITAL E). Letterlike Symbols block. Hex 2130, decimal 8496. Used in mathematical notation and as an expectation operator.
In mathematical notation, probability and expectation formulas, calligraphy-style typography, formal design, and academic content requiring script-style capital E.
HTML code (&#8496; or &#x2130;) or the named entity &Escr; is used in HTML content. The CSS entity (\2130) is used in CSS, e.g. in the content property of pseudo-elements. Both produce ℰ but in different contexts.
Yes. The named HTML entity is &Escr;. It is part of the standard HTML5 entity set and is well supported. You can also use &#8496; or &#x2130; for numeric references.

Explore More HTML Entities!

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