HTML Entity for Greater Than Equal To (⋝)

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

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

Unicode U+22DD

Mathematical Operators

Hex Code ⋝

Hexadecimal reference

HTML Code ⋝

Decimal reference

Named Entity

Use ≥ for ≥ instead

Reference Table
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 (≥)
1

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:

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

🌐 Browser Support

The Greater Than 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 Equal To symbol (⋝) in comparison contexts:

Large glyph
Relation x ⋝ y   a ⋝ b
Common ≥ y ≥ x via &ge;
Related ⋝ vs ≥ (U+2265)
Numeric refs &#x22DD; &#8925; \22DD

🧠 How It Works

1

Hexadecimal Code

&#x22DD; uses the Unicode hexadecimal value 22DD to display the symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\22DD 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 for U+22DD; use &ge; for ≥. Next: Greater Than Equal To Less Than.

Use Cases

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

📐 Mathematics

Inequalities expressing equal-to-or-greater-than (e.g. x ⋝ y).

💻 Programming docs

Comparison operators and bounds in API references.

📚 Textbooks

Academic papers, courses, and formal math notation.

📄 Technical specs

Documentation defining minimum or lower-bound relations.

🔢 Set theory

Order relations and algebra with inclusive lower bounds.

📚 Symbol references

HTML entity lists and Unicode operator documentation.

💡 Best Practices

Do

  • Use &ge; 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 &gt; (U+003E)
  • Put CSS escape \22DD in HTML text nodes
  • Mix ⋝ and ≥ randomly in one document without reason
  • Rely on the symbol alone for screen reader users

Key Takeaways

1

Hex, decimal, and CSS all render ⋝

&#x22DD; &#8925;
2

For CSS stylesheets, use the escape in the content property

\22DD
3

Unicode U+22DD — EQUAL TO OR GREATER-THAN

4

No named entity; use &ge; for common ≥

❓ Frequently Asked Questions

Use &#x22DD; (hex), &#8925; (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.
In mathematical inequalities and comparisons, programming and logic documentation, academic papers and textbooks, technical specifications, set theory and algebra, and any content expressing “equal to or greater than” or “greater than or equal to” relations when this glyph is required.
HTML references (&#8925; or &#x22DD;) 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.
Named HTML entities cover the most common symbols. &ge; 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.

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