HTML Entity for Estimated Symbol (℮)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+212E

What Is Estimated Symbol?

Estimated symbol (℮) is the Unicode character at U+212E in Letterlike Symbols. Official name: ESTIMATED SYMBOL. It is the packaging e-mark used to indicate estimated net quantity on labels.

Remember
Character     ℮
Unicode       U+212E
Hex entity    ℮
Decimal       ℮
CSS escape    \212E
Named entity  (none)
Not the same  e (letter) · ≙ (estimates) · € (euro)

Prefer ℮ or ℮ in HTML (no named form). You can also type ℮ in a UTF-8 document.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNone—
Hex entity℮HTML markup (preferred)
Decimal entity℮HTML markup
Direct character℮HTML text (UTF-8)
CSS escape\212EStylesheet content

When to Use Which

SituationUse
Packaging e-mark / estimated quantity℮ or type ℮
Math “estimates” relationEstimates (≙, ≙)
Euro currencyEuro sign (€, €)
Ordinary letter eType e — not U+212E
Generated text via ::before / ::aftercontent: "\212E"

Live Preview

Estimated symbol rendered alone, in a sample label line, and compared with lookalikes.

Glyph ℮
Large glyph ℮
Sample Net wt. 500 g ℮
Compared ℮   e   ≙   €
With entities Hex: ℮ | Decimal: ℮

Complete HTML Example

One page that shows Estimated symbol with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to display ℮ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Estimated Symbol (U+212E) in HTML</title>
  <style>
    #point::after {
      content: "\212E";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x212E;</p>
  <p>Built with Decimal: &#8494;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ℮</p>
  <p>Label: Net wt. 500 g &#x212E;</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: &#x212E; inserts code point U+212E → ℮.

2. Decimal: same code point as 8494 → &#8494;. Same visual as hex.

3. CSS: use \212E in content (not an HTML entity). #point::after appends ℮.

4. Typed: paste ℮ in a UTF-8 document, or use it on a label line after a quantity.

Pitfalls & Tips

Common mistakes when working with Estimated symbol.

Name

No named entity

There is no HTML5 named entity for U+212E. Use &#x212E; or &#8494;. Do not invent &estimate;.

e

Not the letter e

A plain e is not the estimated symbol. Use U+212E when you need the official e-mark glyph.

≙

Not math estimates

U+2259 (≙, &wedgeq;) is a math relation meaning “estimates” — not the packaging mark.

€

Not the euro sign

U+20AC (&euro;) is currency. Estimated symbol marks quantity, not money.

CSS vs HTML

Do not mix escapes

\212E belongs in CSS strings. &#x212E; / &#8494; belong in HTML.

a11y

Add accessible text

Screen readers may not announce ℮ clearly. Prefer nearby prose (for example “estimated quantity mark”) when the symbol carries meaning.

Semicolon

End references

Always finish entities with ; — write &#x212E;, not &#x212E.

Browser Support

Estimated symbol (U+212E) and its entity forms (&#x212E;, &#8494;, CSS \\212E) are supported in all mainstream browsers. Visible glyphs depend on Letterlike Symbols font coverage.

✓ Universal support

Estimated Symbol (&#x212E;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

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+212E Full support

Bottom line: Prefer &#x212E; in HTML (no named form). Use &#8494; when decimal form is required, and \\212E only inside CSS content.

Key Takeaways

  • Unicode: estimated symbol is U+212E (decimal 8494) — glyph ℮.
  • HTML: no named entity — use &#x212E; / &#8494; / type ℮.
  • CSS: use \212E inside content for generated text.
  • Meaning: ℮ ≠ letter e ≠ estimates ≙ ≠ euro €.

One line: U+212E → &#x212E; / &#8494; / CSS \212E (no named form).

Frequently Asked Questions

Use &#x212E; (hex), &#8494; (decimal), type ℮ directly in UTF-8, or the CSS escape \212E in content. There is no named HTML entity for U+212E.
U+212E (ESTIMATED SYMBOL). Hex 212E, decimal 8494. It belongs to the Letterlike Symbols block (U+2100–U+214F).
No. HTML5 does not define a named entity for U+212E. Prefer &#x212E; or &#8494;.
Use it for the packaging e-mark (estimated net quantity on labels). Prefer estimates (U+2259) for the math “estimates” relation, and euro (U+20AC) for currency.
HTML numeric entities (&#8494; or &#x212E;) go in markup. The CSS escape \212E goes in stylesheet strings (usually content on ::before/::after).
No. U+212E is ℮ (estimated symbol / e-mark). The letter e is U+0065. U+2259 is ≙ (estimates).

Did you know?

Estimated symbol is Unicode U+212E (decimal 8494) — glyph ℮ (ESTIMATED SYMBOL) in Letterlike Symbols. There is no HTML5 named entity; use &#x212E; or &#8494;. It is the packaging e-mark for estimated net quantity. Do not confuse it with the letter e, euro (€), or estimates (≙).

Next: Estimates

Learn the HTML entity for estimates (U+2259).

Estimates 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