HTML Entity for Greater Than Over Equal To (≧)

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

What You'll Learn

How to display the Greater Than Over Equal To (≧) symbol in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2267 (GREATER-THAN OVER EQUAL TO) in the Mathematical Operators block (U+2200–U+22FF).

Render it with ≧, ≧, or CSS escape \2267. There is no named HTML entity for U+2267. It is a typographic variant of greater-than-or-equal: the equal sign appears above the greater-than stroke (versus ≥ where equal is below). For the common symbol use ≥ for ≥ (U+2265).

⚡ Quick Reference — Greater Than Over Equal To

Unicode U+2267

Mathematical Operators

Hex Code ≧

Hexadecimal reference

HTML Code ≧

Decimal reference

Named Entity

Use ≥ for ≥

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2267
Hex code       ≧
HTML code      ≧
Named entity   (none)
CSS code       \2267
Meaning        Greater-than over equal-to
Common alt.    ≥ = U+2265 (≥)
1

Complete HTML Example

This example demonstrates the Greater Than Over Equal To symbol (≧) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity for U+2267:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2267";
  }
 </style>
</head>
<body>
<p>Greater Than Over Equal To using Hexadecimal: &#x2267;</p>
<p>Greater Than Over Equal To using Decimal: &#8807;</p>
<p id="point">Greater Than Over Equal To using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Greater Than Over Equal To symbol (≧) is supported in modern browsers with a math-capable font:

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

👀 Live Preview

See the Greater Than Over Equal To symbol (≧) beside the common ≥ variant:

Large glyph
Inequality x ≧ 0   n ≧ 1
Compare ≥ ≧ vs ≥ (&ge;)
Layout Equal above > (U+2267)
Numeric refs &#x2267; &#8807; \2267

🧠 How It Works

1

Hexadecimal Code

&#x2267; uses the Unicode hexadecimal value 2267 to display the symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2267 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 . No named entity; use &ge; for ≥. Next: Greater Than With Dot.

Use Cases

The Greater Than Over Equal To symbol (≧) is commonly used in:

📐 Mathematics

Inequalities where the over-equal glyph is required (e.g. x ≧ 0).

📊 Order theory

Partial orders and notation that specify this typographic form.

📚 Textbooks

Academic papers and locale-specific math typography.

📄 Technical docs

Specifications mirroring Unicode Mathematical Operators.

🎨 Typography

When equal must appear above greater-than, not below.

📚 Symbol references

HTML entity lists and Unicode operator documentation.

💡 Best Practices

Do

  • Use &ge; when the standard ≥ glyph is acceptable
  • Use ≧ only when your notation requires this layout
  • Use math fonts (Cambria Math, Noto Sans Math) for reliable rendering
  • Explain inequalities in text for accessibility
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Assume a named entity exists (U+2267 has none)
  • Mix ≧ and ≥ randomly without a notation reason
  • Put CSS escape \2267 in HTML text nodes
  • Confuse ≧ with &le; (≤, less-than-or-equal)
  • Rely on the symbol alone for screen reader users

Key Takeaways

1

Hex, decimal, and CSS all render ≧

&#x2267; &#8807;
2

For CSS stylesheets, use the escape in the content property

\2267
3

Unicode U+2267 — GREATER-THAN OVER EQUAL TO

4

Use &ge; for the common ≥ (U+2265)

❓ Frequently Asked Questions

Use &#x2267; (hex), &#8807; (decimal), or \2267 in CSS content. There is no named HTML entity for U+2267. All three produce ≧.
U+2267 (GREATER-THAN OVER EQUAL TO). Mathematical Operators block (U+2200–U+22FF). Hex 2267, decimal 8807. No named HTML entity.
In mathematical inequalities and order theory, formal logic and algebra, academic papers and textbooks, technical documentation, and any content expressing greater-than-or-equal where the typographic variant ≧ (equal over greater) is preferred or required.
Both denote greater than or equal. ≥ (U+2265) has the equal sign below the greater-than and uses &ge;. ≧ (U+2267) has the equal sign above the greater-than. They are typographic variants with the same meaning in most contexts.
HTML5 named entities include the common ≥ via &ge;. U+2267 is a less common typographic variant and uses numeric references or CSS—standard for specialized math operators.

Explore More HTML Entities!

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