HTML Entity for Greater Than Equal To Less Than (⋛)

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

What You'll Learn

How to display the Greater Than Equal To Less Than (⋛) symbol in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+22DB (GREATER-THAN EQUAL TO OR LESS-THAN) in the Mathematical Operators block (U+2200–U+22FF).

Render it with ⋛, ⋛, ⋛, or CSS escape \22DB. It combines greater-than-or-equal with less-than in one relation glyph—used in order theory, formal logic, and technical documentation. Related: Greater Than Equal To (⋝) and Greater Than Or Equal To (≥).

⚡ Quick Reference — Greater Than Equal To Less Than

Unicode U+22DB

Mathematical Operators

Hex Code ⋛

Hexadecimal reference

HTML Code ⋛

Decimal reference

Named Entity ⋛

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22DB
Hex code       ⋛
HTML code      ⋛
Named entity   ⋛
CSS code       \22DB
Meaning        Greater-than equal to or less-than
Related        ≥ = U+2265 (≥)
1

Complete HTML Example

This example demonstrates the Greater Than Equal To Less Than symbol (⋛) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

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

🌐 Browser Support

The Greater Than Equal To Less Than 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 Less Than symbol (⋛) in relation contexts:

Large glyph
Named entity &gel; renders as ⋛
Relation x ⋛ y   a ⋛ b
Related ⋛ vs ≥ vs ⋝
Numeric refs &#x22DB; &#8923; &gel; \22DB

🧠 How It Works

1

Hexadecimal Code

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

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&gel; is the semantic named entity for ⋛—readable in source HTML and part of the HTML5 character set.

HTML markup
4

CSS Entity

\22DB is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: . Unicode U+22DB is in Mathematical Operators. Next: Greater Than Or Equal To.

Use Cases

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

📐 Order theory

Combined comparison relations in partial orders (e.g. x ⋛ y).

🔢 Formal logic

Relation algebra and logic where multi-part operators are defined.

📚 Textbooks

Academic papers, courses, and advanced math notation.

📄 Technical docs

Specifications expressing inclusive or exclusive bound relations.

💻 Programming refs

Libraries and docs mirroring Unicode math operator sets.

📚 Symbol references

HTML entity lists and Unicode operator documentation.

💡 Best Practices

Do

  • Use &gel; for readable source markup
  • Use math fonts (Cambria Math, Noto Sans Math) for reliable rendering
  • Define the relation in prose when the symbol carries formal meaning
  • Link to &ge; (≥) when readers need the common operator
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Substitute ⋛ for simple ≥ or &lt; without context
  • Confuse ⋛ with (U+22DD)
  • Put CSS escape \22DB in HTML text nodes
  • Rely on the symbol alone for screen reader users
  • Assume every system font renders Mathematical Operators clearly

Key Takeaways

1

Three HTML references plus CSS all render ⋛

&#x22DB; &#8923; &gel;
2

For CSS stylesheets, use the escape in the content property

\22DB
3

Unicode U+22DB — GREATER-THAN EQUAL TO OR LESS-THAN

4

Prefer &gel; for readability in HTML source

❓ Frequently Asked Questions

Use &#x22DB; (hex), &#8923; (decimal), &gel; (named), or \22DB in CSS content. All produce ⋛.
U+22DB (GREATER-THAN EQUAL TO OR LESS-THAN). Mathematical Operators block (U+2200–U+22FF). Hex 22DB, decimal 8923. Named entity: &gel;.
In mathematical notation and order theory, formal logic and algebra, academic papers and textbooks, technical documentation that expresses combined comparison relations, and any content requiring the greater-equal-or-less relation in a single symbol.
&gel; is the named HTML entity for ⋛. It is part of the HTML5 named character set and the most readable option in source markup.
⋛ (Greater Than Equal To Less Than) denotes a combined relation used in order theory and relation algebra—greater-than-or-equal or less-than, depending on the formal definition in your text. It is not the same as the common ≥ (&ge;) alone.

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