HTML Entity for Very Much Greater Than (⋙)

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

What You'll Learn

How to display the Very Much Greater Than symbol (⋙) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+22D9 (VERY MUCH GREATER-THAN) in the Mathematical Operators block—a comparison operator used in inequalities, algebra, and formal mathematical notation.

Render it with ⋙, ⋙, the named entity ⋙, or CSS escape \22D9. Do not confuse ⋙ with much greater-than ≫ (≫) or plain greater-than > (U+003E).

⚡ Quick Reference — Very Much Greater Than Entity

Unicode U+22D9

Mathematical Operators

Hex Code ⋙

Hexadecimal reference

HTML Code ⋙

Decimal reference

Named Entity ⋙

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+22D9
Hex code       ⋙
HTML code      ⋙
Named entity   ⋙
CSS code       \22D9
Meaning        Very much greater-than
Related        U+226B = ≫ (much greater-than, ≫)
               U+003E = > (greater-than, >)
Block          Mathematical Operators (U+2200–U+22FF)
1

Complete HTML Example

A simple example showing the Very Much Greater Than symbol (⋙) using hexadecimal code, decimal HTML code, named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\22D9";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x22D9;</p>
<p>Symbol (decimal): &#8921;</p>
<p>Symbol (named): &Gg;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The Very Much Greater Than symbol (⋙) is supported in modern browsers when the font includes Mathematical Operators glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Very Much Greater Than symbol rendered live in mathematical contexts:

Inequalityab means a is very much greater than b
Large glyph
Comparison scale>   ≫   ⋙
Not the same as≫ (U+226B, much greater-than, &Gt;)
Numeric refs&#x22D9; &#8921; &Gg; \22D9

🧠 How It Works

1

Hexadecimal Code

&#x22D9; uses the Unicode hexadecimal value 22D9 to display the character. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8921; uses the decimal Unicode value 8921 to display the same character. A common method for Mathematical Operators.

HTML markup
3

Named Entity

&Gg; is the semantic named entity—the easiest to read in source HTML for the very much greater-than operator.

HTML markup
4

CSS Entity

\22D9 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+22D9 sits in Mathematical Operators. Not the same as &Gt; (≫) or &gt; (>).

Use Cases

The Very Much Greater Than symbol (⋙) is commonly used in:

📐 Mathematical expressions

Equations and formulas requiring “very much greater than” (e.g. ab).

⚖ Inequalities

Order relations in algebra, analysis, and formal mathematics.

📚 Academic papers

Research papers, proofs, and scholarly mathematical content.

📄 Technical documentation

API docs, tutorials, and content describing comparisons or limits.

🎓 Educational content

Math courses, textbooks, and e-learning modules on order relations.

🔢 Symbolic logic

Formal logic, set theory, and mathematical notation.

🖥 Programming tutorials

Docs explaining mathematical operators or algorithm comparisons.

💡 Best Practices

Do

  • Use &Gg; for readable source markup
  • Add spacing around the operator in equations (e.g. ab)
  • Pick one entity style per project for consistency
  • Use fonts that support Mathematical Operators
  • Distinguish ⋙ from ≫ (&Gt;) and >

Don’t

  • Confuse ⋙ (U+22D9) with ≫ (U+226B, much greater-than)
  • Substitute > or &gt; when ⋙ is specifically required
  • Mix entity styles randomly in one file
  • Use CSS escape \22D9 inside HTML markup
  • Forget accessibility labels for standalone math symbols

Key Takeaways

1

Type ⋙ directly, or use hex/decimal/named references

&#x22D9; &#8921; &Gg;
2

For CSS stylesheets, use the escape in the content property

\22D9
3

Unicode U+22D9 — VERY MUCH GREATER-THAN

4

Not the same as ≫ (&Gt;) or >

❓ Frequently Asked Questions

Use &#x22D9; (hex), &#8921; (decimal), &Gg; (named), or \22D9 in CSS content. All produce ⋙. In UTF-8 you can also type ⋙ directly.
U+22D9 (VERY MUCH GREATER-THAN). Mathematical Operators block. Hex 22D9, decimal 8921. Named entity &Gg;. Related: U+226B (≫, &Gt;) is much greater-than.
In mathematical expressions, inequalities, algebra, academic papers, technical documentation, and any content requiring this precise comparison operator.
HTML entities (&#8921;, &#x22D9;, or &Gg;) go directly in markup. The CSS escape \22D9 is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.
Yes. &Gg; is the named HTML entity for ⋙ (U+22D9). &#8921; and &#x22D9; are equivalent in modern browsers. Do not confuse &Gg; with &Gt; (≫, much greater-than).

Explore More HTML Entities!

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