HTML Entity for Greater Than Equal To (⋝)

What You'll Learn
How to display the Greater Than Equal To (⋝) symbol in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+22DD (EQUAL TO OR GREATER-THAN) in the Mathematical Operators block (U+2200–U+22FF).
Render it with ⋝, ⋝, or CSS escape \22DD. There is no named HTML entity for U+22DD. For the common greater-than-or-equal sign, use ≥ for ≥ (U+2265). The glyph ⋝ is a related operator variant, not identical to ≥.
⚡ Quick Reference — Greater Than Equal To
U+22DDMathematical Operators
⋝Hexadecimal reference
⋝Decimal reference
—Use ≥ for ≥ instead
Name Value
──────────── ──────────
Unicode U+22DD
Hex code ⋝
HTML code ⋝
Named entity (none)
CSS code \22DD
Meaning Equal to or greater-than
Common alt. ≥ = U+2265 (≥)Complete HTML Example
This example demonstrates the Greater Than Equal To symbol (⋝) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity for U+22DD:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\22DD";
}
</style>
</head>
<body>
<p>Greater Than Equal To using Hexadecimal: ⋝</p>
<p>Greater Than Equal To using Decimal: ⋝</p>
<p id="point">Greater Than Equal To using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Greater Than Equal To symbol (⋝) is supported in modern browsers with a math-capable font:
👀 Live Preview
See the Greater Than Equal To symbol (⋝) in comparison contexts:
🧠 How It Works
Hexadecimal Code
⋝ uses the Unicode hexadecimal value 22DD to display the symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
⋝ uses the decimal Unicode value 8925 to display the same character.
CSS Entity
\22DD 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 for U+22DD; use ≥ for ≥. Next: Greater Than Equal To Less Than.
Use Cases
The Greater Than Equal To symbol (⋝) is commonly used in:
Inequalities expressing equal-to-or-greater-than (e.g. x ⋝ y).
Comparison operators and bounds in API references.
Academic papers, courses, and formal math notation.
Documentation defining minimum or lower-bound relations.
Order relations and algebra with inclusive lower bounds.
HTML entity lists and Unicode operator documentation.
💡 Best Practices
Do
- Use
≥when you need the common ≥ (U+2265) - Use math fonts (Cambria Math, Noto Sans Math) for reliable rendering
- Pick ⋝ or ≥ consistently for your notation standard
- Explain the relation in text for accessibility when meaning matters
- Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Assume U+22DD has a named entity (it does not)
- Confuse ⋝ with plain
>(U+003E) - Put CSS escape
\22DDin HTML text nodes - Mix ⋝ and ≥ randomly in one document without reason
- 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
\22DDUnicode U+22DD — EQUAL TO OR GREATER-THAN
No named entity; use ≥ for common ≥
❓ Frequently Asked Questions
⋝ (hex), ⋝ (decimal), or \22DD in CSS content. There is no named HTML entity for U+22DD. All three produce ⋝.U+22DD (EQUAL TO OR GREATER-THAN). Mathematical Operators block (U+2200–U+22FF). Hex 22DD, decimal 8925. No named HTML entity.⋝ or ⋝) go in markup. The CSS escape \22DD is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.≥ renders ≥ (U+2265, greater-than or equal to). U+22DD (⋝) is a variant in Mathematical Operators and uses numeric codes or CSS—standard for many math symbols in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, inequalities, and more.
8 people found this page helpful
