HTML Entity for Greater Than Or Equivalent To (≳)

What You'll Learn
How to display the Greater Than Or Equivalent To (≳) symbol in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2273 (GREATER-THAN OR EQUIVALENT TO) in the Mathematical Operators block (U+2200–U+22FF).
Render it with ≳, ≳, ≳, or CSS escape \2273. It means one value is greater than or equivalent to another under a defined equivalence relation—used in order theory and formal math. Not the same as Greater Than Or Equal To (≥, U+2265) or Greater Than But Not Equivalent To (⋧).
⚡ Quick Reference — Greater Than Or Equivalent To
U+2273Mathematical Operators
≳Hexadecimal reference
≳Decimal reference
≳Most readable option
Name Value
──────────── ──────────
Unicode U+2273
Hex code ≳
HTML code ≳
Named entity ≳
CSS code \2273
Meaning Greater-than or equivalent to
Not to confuse ≥ = U+2265 (≥)
Related ⋧ = not equivalent (⋧)Complete HTML Example
This example demonstrates the Greater Than Or Equivalent To symbol (≳) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2273";
}
</style>
</head>
<body>
<p>Greater Than Or Equivalent To using Hexadecimal: ≳</p>
<p>Greater Than Or Equivalent To using Decimal: ≳</p>
<p>Greater Than Or Equivalent To using Named Entity: ≳</p>
<p id="point">Greater Than Or Equivalent To using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Greater Than Or Equivalent To symbol (≳) is supported in modern browsers with a math-capable font:
👀 Live Preview
See the Greater Than Or Equivalent To symbol (≳) in equivalence contexts:
🧠 How It Works
Hexadecimal Code
≳ uses the Unicode hexadecimal value 2273 to display the symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
≳ uses the decimal Unicode value 8819 to display the same character.
Named Entity
≳ is the semantic named entity for ≳—readable in source HTML and part of the HTML5 character set.
CSS Entity
\2273 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+2273 is in Mathematical Operators. Next: Greater Than Or Less Than.
Use Cases
The Greater Than Or Equivalent To symbol (≳) is commonly used in:
Formal math where “equivalent” is defined separately from numeric equality (e.g. x ≳ y).
Lattices and partial orders with equivalence-based comparisons.
Academic papers, algebra courses, and advanced math references.
Specs comparing elements under custom equivalence relations.
Modular arithmetic and abstract structures with non-standard equivalence.
HTML entity lists and Unicode operator documentation.
💡 Best Practices
Do
- Use
≳for readable source markup - Use math fonts (Cambria Math, Noto Sans Math) for reliable rendering
- Define the equivalence relation in prose when meaning matters
- Distinguish ≳ from
≥(≥) and⋧(⋧) - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Use ≳ when you mean numeric ≥ (
≥) - Confuse
≳with⋧(different code points) - Put CSS escape
\2273in HTML text nodes - Rely on the symbol alone for screen reader users
- Assume every system font renders Mathematical Operators clearly
Key Takeaways
Three HTML references plus CSS all render ≳
≳ ≳ ≳For CSS stylesheets, use the escape in the content property
\2273Unicode U+2273 — GREATER-THAN OR EQUIVALENT TO
Prefer ≳ for readability in HTML source
❓ Frequently Asked Questions
≳ (hex), ≳ (decimal), ≳ (named), or \2273 in CSS content. All produce ≳.U+2273 (GREATER-THAN OR EQUIVALENT TO). Mathematical Operators block (U+2200–U+22FF). Hex 2273, decimal 8819. Named entity: ≳.≳ is the named HTML entity for ≳. It is part of the HTML5 named character set and the most readable option in source markup.≥) means greater than or equal—a numeric inequality. ≳ (U+2273) means greater than or equivalent—used when equivalence is a defined relation (e.g. order theory, modular arithmetic, abstract algebra). So ≳ refers to equivalence relations; ≥ refers to numeric comparison.Explore More HTML Entities!
Discover 1500+ HTML character references — equivalence relations, operators, and more.
8 people found this page helpful
