HTML Entity for Uppercase E Script Capital (ℰ)

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
U+2130Letterlike Symbols
ℰHexadecimal reference
ℰDecimal reference
ℰMost readable option
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2130";
}
</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 script capital E (ℰ) and the named entity ℰ are supported in modern browsers when UTF-8 is used:
👀 Live Preview
See the script capital E (ℰ) in mathematical and typographic contexts:
🧠 How It Works
Hexadecimal Code
ℰ uses the Unicode hexadecimal value 2130 to display the script capital E. The x prefix indicates hexadecimal format.
Decimal HTML Code
ℰ uses the decimal Unicode value 8496 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.
CSS Entity
\2130 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+2130 sits in Letterlike Symbols. Do not confuse with plain E (U+0045) or script small e ℯ (U+212F).
Use Cases
The script capital E (ℰ) is commonly used in:
Script-style capital E in equations, probability, and formal mathematical writing.
Used as ℰ[X] for expected value in statistics and probability theory.
Elegant script lettering in calligraphy, invitations, and formal design projects.
Scholarly documents and research papers using script letter notation.
Math and statistics courses teaching expectation and script letter conventions.
Scientific blogs and online textbooks that need proper script E rendering.
Correct rendering so mathematical content can be found and indexed accurately.
💡 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) 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
Ewhen ℰ is required in math notation - Put CSS escape
\2130in HTML text nodes - Use padded Unicode notation like U+02130—the correct value is
U+2130 - Use
\02130in CSS—the correct escape is\2130 - Assume all fonts render Letterlike Symbols identically
Key Takeaways
Four references render ℰ; named entity is most readable
ℰ ℰ ℰFor CSS stylesheets, use the escape in the content property
\2130Unicode U+2130 — SCRIPT CAPITAL E
Used in math notation, expectation formulas, and elegant typography
Previous: Uppercase E Reverse (Ǝ) Next: Uppercase E Umlaut (Ë)
❓ Frequently Asked Questions
ℰ (named), ℰ (hex), ℰ (decimal), or \2130 in CSS content. The named entity ℰ 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.ℰ or ℰ) or the named entity ℰ 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.ℰ. It is part of the standard HTML5 entity set and is well supported. You can also use ℰ or ℰ for numeric references.Explore More HTML Entities!
Discover 1500+ HTML character references — script letters, math symbols, and more.
8 people found this page helpful
