HTML Entity for Estimated Symbol (℮)

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

What You'll Learn

How to display the Estimated Symbol (℮) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+212E (ESTIMATED SYMBOL) in the Letterlike Symbols block (U+2100–U+214F)—the e-mark used on packaging to indicate estimated weight or volume (e.g. under EU regulations).

Render it with ℮, ℮, or CSS escape \212E. There is no named HTML entity. Do not confuse ℮ with estimates (≙, ≙), the letter e, or the euro sign (€).

⚡ Quick Reference — Estimated Symbol

Unicode U+212E

Letterlike Symbols

Hex Code ℮

Hexadecimal reference

HTML Code ℮

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+212E
Hex code       ℮
HTML code      ℮
Named entity   (none)
CSS code       \212E
Meaning        E-mark (estimated quantity)
Related        U+2259 = Estimates (≙, ≙); not the letter e
1

Complete HTML Example

This example demonstrates the Estimated Symbol (℮) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity for this symbol:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\212E";
  }
 </style>
</head>
<body>
<p>Estimated Symbol using Hexadecimal: &#x212E;</p>
<p>Estimated Symbol using HTML Code: &#8494;</p>
<p id="point">Estimated Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Estimated Symbol entity is universally supported in modern browsers:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the estimated symbol (℮) on a packaging label and compared with estimates (≙):

E-mark label Net 500 g ℮
Large glyph
vs estimates ℮   vs   ≙
Numeric refs &#x212E; &#8494;
No named entity Use hex or decimal only

🧠 How It Works

1

Hexadecimal Code

&#x212E; uses the Unicode hexadecimal value 212E to display the Estimated Symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8494; uses the decimal Unicode value 8494 to display the same character.

HTML markup
3

CSS Entity

\212E is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+212E in the Letterlike Symbols block (U+2100–U+214F). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Estimated Symbol (℮) commonly appears in:

📦 Packaging

Product labels showing estimated net weight or volume (e.g. 500 g ℮).

🇪🇺 EU compliance

E-mark content aligned with packaging and quantity regulations.

📋 Catalogs

Online product listings and spec sheets with quantity symbols.

👥 Consumer info

Help pages explaining estimated quantity markings.

📰 Regulatory

Compliance and standards documentation on the web.

🌐 Symbol guides

Letterlike and packaging symbol reference pages.

💡 Best Practices

Do

  • Use &#x212E; or &#8494; for readable e-mark markup
  • Use clear fonts on packaging-style layouts
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Add aria-label (e.g. “estimated quantity”) for accessibility
  • Place ℮ immediately after the quantity it qualifies

Don’t

  • Confuse ℮ (e-mark) with ≙ (&wedgeq;, estimates) or the letter e
  • Expect a named entity—none exists for U+212E
  • Put CSS escape \212E in HTML text nodes
  • Assume every font renders ℮ clearly at small sizes
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS render ℮

&#x212E; &#8494;
2

For CSS stylesheets, use the escape in the content property

\212E
3

Unicode U+212E — ESTIMATED SYMBOL

4

E-mark for estimated weight/volume on packaging

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x212E; (hex), &#8494; (decimal), or \212E in CSS content. There is no named entity.
U+212E (ESTIMATED SYMBOL). Letterlike Symbols block (U+2100–U+214F). Hex 212E, decimal 8494. E-mark for estimated quantity on packaging.
When you need the e-mark on packaging labels, product catalogs, EU compliance pages, or any content showing estimated weight or volume.
Named entities cover a subset of common characters. U+212E has no named entity—use &#x212E; or &#8494; in markup, or \212E in CSS.
HTML references (&#8494; or &#x212E;) go in markup. The CSS escape \212E is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.

Explore More HTML Entities!

Discover 1500+ HTML character references — packaging, letterlike 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