HTML Entity for Very Much Greater Than (⋙)

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
U+22D9Mathematical Operators
⋙Hexadecimal reference
⋙Decimal reference
⋙Most readable option
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)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\22D9";
}
</style>
</head>
<body>
<p>Symbol (hex): ⋙</p>
<p>Symbol (decimal): ⋙</p>
<p>Symbol (named): ⋙</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The Very Much Greater Than symbol (⋙) is supported in modern browsers when the font includes Mathematical Operators glyphs:
👀 Live Preview
See the Very Much Greater Than symbol rendered live in mathematical contexts:
≫)🧠 How It Works
Hexadecimal Code
⋙ uses the Unicode hexadecimal value 22D9 to display the character. The x prefix indicates hexadecimal format.
Decimal HTML Code
⋙ uses the decimal Unicode value 8921 to display the same character. A common method for Mathematical Operators.
Named Entity
⋙ is the semantic named entity—the easiest to read in source HTML for the very much greater-than operator.
CSS Entity
\22D9 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce the glyph: ⋙. Unicode U+22D9 sits in Mathematical Operators. Not the same as ≫ (≫) or > (>).
Use Cases
The Very Much Greater Than symbol (⋙) is commonly used in:
Equations and formulas requiring “very much greater than” (e.g. a ⋙ b).
Order relations in algebra, analysis, and formal mathematics.
Research papers, proofs, and scholarly mathematical content.
API docs, tutorials, and content describing comparisons or limits.
Math courses, textbooks, and e-learning modules on order relations.
Formal logic, set theory, and mathematical notation.
Docs explaining mathematical operators or algorithm comparisons.
💡 Best Practices
Do
- Use
⋙for readable source markup - Add spacing around the operator in equations (e.g. a ⋙ b)
- Pick one entity style per project for consistency
- Use fonts that support Mathematical Operators
- Distinguish ⋙ from ≫ (
≫) and>
Don’t
- Confuse ⋙ (U+22D9) with ≫ (U+226B, much greater-than)
- Substitute
>or>when ⋙ is specifically required - Mix entity styles randomly in one file
- Use CSS escape
\22D9inside HTML markup - Forget accessibility labels for standalone math symbols
Key Takeaways
Type ⋙ directly, or use hex/decimal/named references
⋙ ⋙ ⋙For CSS stylesheets, use the escape in the content property
\22D9Unicode U+22D9 — VERY MUCH GREATER-THAN
Not the same as ≫ (≫) or >
Previous: Vertical Tilde (̾) Next: Very Much Less Than
❓ Frequently Asked Questions
⋙ (hex), ⋙ (decimal), ⋙ (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 ⋙. Related: U+226B (≫, ≫) is much greater-than.⋙, ⋙, or ⋙) 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.⋙ is the named HTML entity for ⋙ (U+22D9). ⋙ and ⋙ are equivalent in modern browsers. Do not confuse ⋙ with ≫ (≫, much greater-than).Explore More HTML Entities!
Discover 1500+ HTML character references — symbols, punctuation, and more.
8 people found this page helpful
