HTML Entity for Excess (∹)

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

What You'll Learn

How to display the Excess (∹) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2239 (EXCESS) in the Mathematical Operators block (U+2200–U+22FF)—used for the excess relation when one quantity is in excess of another.

Render it with ∹, ∹, or CSS escape \2239. There is no named HTML entity. Do not confuse ∹ with the letter E or unrelated punctuation.

⚡ Quick Reference — Excess

Unicode U+2239

Mathematical Operators

Hex Code ∹

Hexadecimal reference

HTML Code ∹

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2239
Hex code       ∹
HTML code      ∹
Named entity   (none)
CSS code       \2239
Meaning        Excess relation (in excess of)
Related        U+2259 = Estimates (≙, ≙)
1

Complete HTML Example

This example demonstrates the Excess (∹) 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: "\2239";
  }
 </style>
</head>
<body>
<p>Excess using Hexadecimal: &#x2239;</p>
<p>Excess using HTML Code: &#8761;</p>
<p id="point">Excess using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Excess 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 excess relation symbol (∹) in math context:

Relation ab
Large glyph
Numeric refs &#x2239; &#8761;
No named entity Use hex or decimal only

🧠 How It Works

1

Hexadecimal Code

&#x2239; uses the Unicode hexadecimal value 2239 to display the Excess. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2239 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+2239 in the Mathematical Operators block (U+2200–U+22FF). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Excess (∹) commonly appears in:

📐 Relations

Denote excess between quantities (e.g. ab).

📝 Proofs

Mathematical proofs, inequalities, and relation notation.

🔢 Algebra

Express excess or surplus relations in equations and analysis.

🎓 Education

Math courses, textbooks, and tutorials on relation symbols.

📰 Research

Technical specs and mathematical documentation on the web.

🌐 Symbol guides

Math wikis, reference pages, and notation documentation.

💡 Best Practices

Do

  • Use &#x2239; or &#8761; for excess relation markup
  • Use math-friendly fonts for clear ∹ rendering
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Add aria-label (e.g. “in excess of”) for accessibility
  • Provide context so readers know the symbol’s meaning

Don’t

  • Expect a named entity—none exists for U+2239
  • Put CSS escape \2239 in HTML text nodes
  • Use ∹ when a standard inequality (<, >) is sufficient
  • 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 ∹

&#x2239; &#8761;
2

For CSS stylesheets, use the escape in the content property

\2239
3

Unicode U+2239 — EXCESS

4

Excess relation in mathematical notation

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x2239; (hex), &#8761; (decimal), or \2239 in CSS content. There is no named entity.
U+2239 (EXCESS). Mathematical Operators block (U+2200–U+22FF). Hex 2239, decimal 8761. Denotes the excess relation in mathematics.
When your notation requires the excess relation in mathematics, proofs, algebra, analysis, or educational content describing relation symbols.
Named entities cover a subset of common characters. U+2239 has no named entity—use &#x2239; or &#8761; in markup, or \2239 in CSS.
HTML references (&#8761; or &#x2239;) go in markup. The CSS escape \2239 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 — math operators, relations, 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