HTML Entity for Greater Than But Not Equal To (≩)

What You'll Learn
How to display the Greater Than But Not Equal To (≩) symbol in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2269 (GREATER-THAN BUT NOT EQUAL TO) in the Mathematical Operators block (U+2200–U+22FF).
Render it with ≩, ≩, ≩, or CSS escape \2269. It expresses that one value is greater than another but not equal—common in inequalities and formal math. Not the same as Greater Than (>, U+003E) or greater-than-or-equal (≥, U+2265).
⚡ Quick Reference — Greater Than But Not Equal To
U+2269Mathematical Operators
≩Hexadecimal reference
≩Decimal reference
≩Most readable option
Name Value
──────────── ──────────
Unicode U+2269
Hex code ≩
HTML code ≩
Named entity ≩
CSS code \2269
Meaning Greater-than but not equal to
Not to confuse U+2265 = greater-than or equal (≥)Complete HTML Example
This example demonstrates the Greater Than But Not Equal To symbol (≩) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2269";
}
</style>
</head>
<body>
<p>Greater Than But Not Equal To using Hexadecimal: ≩</p>
<p>Greater Than But Not Equal To using Decimal: ≩</p>
<p>Greater Than But Not Equal To using Named Entity: ≩</p>
<p id="point">Greater Than But Not Equal To using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Greater Than But Not Equal To symbol (≩) is supported in modern browsers with a math-capable font:
👀 Live Preview
See the Greater Than But Not Equal To symbol (≩) in inequality contexts:
🧠 How It Works
Hexadecimal Code
≩ uses the Unicode hexadecimal value 2269 to display the symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
≩ uses the decimal Unicode value 8809 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
\2269 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+2269 is in Mathematical Operators. Next: Greater Than But Not Equivalent To.
Use Cases
The Greater Than But Not Equal To symbol (≩) is commonly used in:
Inequalities and proofs where equality is explicitly excluded (e.g. x ≩ y).
Logic and comparison operators in API and language references.
Academic papers, courses, and online math tutorials.
Order relations and algebra expressing strict greater-than.
Specs and documentation comparing numeric or ordered values.
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
- Explain the relation in text for accessibility when meaning matters
- Distinguish ≩ from ≥ and plain
>in documentation - Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse ≩ with not equivalent (⋧, U+22E7)
- Use ≥ when you mean strict greater-than without equality
- Put CSS escape
\2269in HTML text nodes - Rely on the symbol alone without context for screen readers
- 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
\2269Unicode U+2269 — GREATER-THAN BUT NOT EQUAL TO
Prefer ≩ for readability in HTML source
❓ Frequently Asked Questions
≩ (hex), ≩ (decimal), ≩ (named), or \2269 in CSS content. All produce ≩.U+2269 (GREATER-THAN BUT NOT EQUAL TO). Mathematical Operators block (U+2200–U+22FF). Hex 2269, decimal 8809. 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 strictly greater. Greater-than-or-equal (≥) allows equality. ≩ means greater than and not equal—equivalent to strict greater-than in most contexts, but used in formal math when emphasizing the exclusion of equality.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, inequalities, and more.
8 people found this page helpful
