HTML Entity for Greater Than Over Equal To (≧)

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
U+2267Mathematical Operators
≧Hexadecimal reference
≧Decimal reference
—Use ≥ for ≥
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 (≥)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2267";
}
</style>
</head>
<body>
<p>Greater Than Over Equal To using Hexadecimal: ≧</p>
<p>Greater Than Over Equal To using Decimal: ≧</p>
<p id="point">Greater Than Over Equal To using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Greater Than Over Equal To symbol (≧) is supported in modern browsers with a math-capable font:
👀 Live Preview
See the Greater Than Over Equal To symbol (≧) beside the common ≥ variant:
🧠 How It Works
Hexadecimal Code
≧ uses the Unicode hexadecimal value 2267 to display the symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
≧ uses the decimal Unicode value 8807 to display the same character.
CSS Entity
\2267 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce ≧. No named entity; use ≥ for ≥. Next: Greater Than With Dot.
Use Cases
The Greater Than Over Equal To symbol (≧) is commonly used in:
Inequalities where the over-equal glyph is required (e.g. x ≧ 0).
Partial orders and notation that specify this typographic form.
Academic papers and locale-specific math typography.
Specifications mirroring Unicode Mathematical Operators.
When equal must appear above greater-than, not below.
HTML entity lists and Unicode operator documentation.
💡 Best Practices
Do
- Use
≥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
\2267in HTML text nodes - Confuse ≧ with
≤(≤, less-than-or-equal) - Rely on the symbol alone for screen reader users
Key Takeaways
Hex, decimal, and CSS all render ≧
≧ ≧For CSS stylesheets, use the escape in the content property
\2267Unicode U+2267 — GREATER-THAN OVER EQUAL TO
Use ≥ for the common ≥ (U+2265)
Next: Greater Than With Dot
❓ Frequently Asked Questions
≧ (hex), ≧ (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.≥. ≧ (U+2267) has the equal sign above the greater-than. They are typographic variants with the same meaning in most contexts.≥. 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.
8 people found this page helpful
