HTML Entity for Much Greater Than (≫)

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
U+226BMathematical Operators
≫Hexadecimal reference
≫Decimal reference
≫Much greater-than (capital G)
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 (≪, ≪)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\226B";
}
</style>
</head>
<body>
<p>Much Greater Than using Hexadecimal: ≫</p>
<p>Much Greater Than using HTML Code: ≫</p>
<p>Much Greater Than using Named Entity: ≫</p>
<p id="point">Much Greater Than using CSS Entity: </p>
</body>
</html>🌐 Browser Support
U+226B is supported in modern browsers; use a font with Mathematical Operators coverage for consistent glyphs:
👀 Live Preview
See the much greater-than symbol (≫) in mathematical contexts:
🧠 How It Works
Named Entity
≫ is the HTML named entity for much greater-than. Note the capital G—distinct from > (ordinary >).
Hexadecimal Code
≫ uses the Unicode hexadecimal value 226B. The x prefix indicates hexadecimal format.
Decimal HTML Code
≫ uses the decimal Unicode value 8811 to display the same character.
CSS Entity
\226B is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ≫. Unicode U+226B in Mathematical Operators. Pair with much less-than (≪, ≪).
Use Cases
The much greater-than symbol (≫) is commonly used in:
Inequalities where one quantity dominates another (x ≫ y).
Big-O and growth-rate comparisons in algorithms and complexity.
Order-of-magnitude comparisons in formulas and specifications.
Textbooks, papers, and lecture notes on analysis and algebra.
Technical docs, datasheets, and scientific web content.
HTML entity lists and Unicode math symbol references.
💡 Best Practices
Do
- Use
≫for readable math markup (capital G, not lowercase) - Pair with
≪(≪) 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
≫(≫) with>(>, U+003E) - Use two ASCII
>>characters when you mean the single symbol ≫ - Put CSS escape
\226Bin HTML text nodes - Mix entity styles randomly in one file
- Rely on the symbol alone without accessible description
Key Takeaways
Three HTML references plus CSS all render ≫
≫ ≫ ≫For CSS stylesheets, use the escape in the content property
\226BUnicode U+226B — MUCH GREATER-THAN
≫ is the named entity (not >)
Pair: Much Less Than (≪, ≪)
❓ Frequently Asked Questions
≫ (named), ≫ (hex), ≫ (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: ≫.U+003E, >) is the ordinary greater-than sign. ≫ (U+226B, ≫) is the mathematical much greater-than symbol with a distinct Unicode code point and meaning.≫, ≫, or ≫) 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.
8 people found this page helpful
