HTML Entity for Much Greater Than (≫)

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

What You'll Learn

How to display the much greater-than symbol (≫) in HTML using named, hexadecimal, decimal, and CSS escape methods. This character is U+226B (MUCH GREATER-THAN) in the Mathematical Operators block (U+2200–U+22FF)—used for inequalities and asymptotic comparisons, for example “x ≫ y” or “f(n) ≫ g(n).”

Render it with the named entity ≫, ≫, ≫, or CSS escape \226B. Do not confuse ≫ (≫, U+226B) with > (>, U+003E)—the ordinary greater-than sign. The pair symbol is much less-than (≪, ≪).

⚡ Quick Reference — Much Greater Than

Unicode U+226B

Mathematical Operators

Hex Code ≫

Hexadecimal reference

HTML Code ≫

Decimal reference

Named Entity ≫

Much greater-than (capital G)

Reference Table
Name           Value
────────────   ──────────
Unicode        U+226B
Hex code       ≫
HTML code      ≫
Named entity   ≫
CSS code       \226B
Meaning        Much greater-than (≫)
Related        U+003E = greater-than (>, >)
               U+226A = much less-than (≪, ≪)
1

Complete HTML Example

This example demonstrates the much greater-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: "\226B";
  }
 </style>
</head>
<body>
<p>Much Greater Than using Hexadecimal: &#x226B;</p>
<p>Much Greater Than using HTML Code: &#8811;</p>
<p>Much Greater Than using Named Entity: &Gt;</p>
<p id="point">Much Greater Than using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+226B is supported in modern browsers; use a font with Mathematical Operators coverage for consistent glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the much greater-than symbol (≫) in mathematical contexts:

Inequality x ≫ y
Asymptotic f(n) ≫ g(n)
Comparison pair ≪ ≫
Large glyph
vs ordinary > > &gt;   ≫ &Gt;

🧠 How It Works

1

Named Entity

&Gt; is the HTML named entity for much greater-than. Note the capital G—distinct from &gt; (ordinary >).

HTML markup
2

Hexadecimal Code

&#x226B; uses the Unicode hexadecimal value 226B. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\226B 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: . Unicode U+226B in Mathematical Operators. Pair with much less-than (≪, &Lt;).

Use Cases

The much greater-than symbol (≫) is commonly used in:

🔢 Mathematics

Inequalities where one quantity dominates another (x ≫ y).

📈 Asymptotic analysis

Big-O and growth-rate comparisons in algorithms and complexity.

⚙️ Physics & engineering

Order-of-magnitude comparisons in formulas and specifications.

📚 Academia

Textbooks, papers, and lecture notes on analysis and algebra.

💻 Documentation

Technical docs, datasheets, and scientific web content.

🌐 Symbol guides

HTML entity lists and Unicode math symbol references.

💡 Best Practices

Do

  • Use &Gt; for readable math markup (capital G, not lowercase)
  • Pair with &Lt; (≪) when teaching inequality pairs
  • Use fonts that cover Mathematical Operators (Cambria Math, etc.)
  • Add aria-label (e.g. “much greater than”) for accessibility
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse &Gt; (≫) with &gt; (>, U+003E)
  • Use two ASCII >> characters when you mean the single symbol ≫
  • Put CSS escape \226B in HTML text nodes
  • Mix entity styles randomly in one file
  • Rely on the symbol alone without accessible description

Key Takeaways

1

Three HTML references plus CSS all render ≫

&#x226B; &#8811; &Gt;
2

For CSS stylesheets, use the escape in the content property

\226B
3

Unicode U+226B — MUCH GREATER-THAN

4

&Gt; is the named entity (not &gt;)

5

Pair: Much Less Than (≪, &Lt;)

❓ Frequently Asked Questions

Use &Gt; (named), &#x226B; (hex), &#8811; (decimal), or \226B in CSS content. All produce ≫.
U+226B (MUCH GREATER-THAN). Mathematical Operators block (U+2200–U+22FF). Hex 226B, decimal 8811. Named entity: &Gt;.
In mathematical inequalities, asymptotic notation, physics and engineering comparisons, academic papers, and any content where one value is much larger than another.
> (U+003E, &gt;) is the ordinary greater-than sign. ≫ (U+226B, &Gt;) is the mathematical much greater-than symbol with a distinct Unicode code point and meaning.
HTML entities (&#8811;, &#x226B;, or &Gt;) go directly in markup. The CSS escape \226B is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.

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