HTML Entity for Greater Than But Not Equivalent To (⋧)

What You'll Learn
How to display the Greater Than But Not Equivalent To (⋧) symbol in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+22E7 (GREATER-THAN BUT NOT EQUIVALENT TO) in the Mathematical Operators block (U+2200–U+22FF).
Render it with ⋧, ⋧, ⋧, or CSS escape \22E7. It means one value is greater than another but not equivalent under a defined relation—used in order theory and formal math. Not the same as Greater Than But Not Equal To (≩, U+2269).
⚡ Quick Reference — Greater Than But Not Equivalent To
U+22E7Mathematical Operators
⋧Hexadecimal reference
⋧Decimal reference
⋧Most readable option
Name Value
──────────── ──────────
Unicode U+22E7
Hex code ⋧
HTML code ⋧
Named entity ⋧
CSS code \22E7
Meaning Greater-than but not equivalent to
Not to confuse U+2269 = greater-than but not equal (≩)Complete HTML Example
This example demonstrates the Greater Than But Not 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: "\22E7";
}
</style>
</head>
<body>
<p>Greater Than But Not Equivalent To using Hexadecimal: ⋧</p>
<p>Greater Than But Not Equivalent To using Decimal: ⋧</p>
<p>Greater Than But Not Equivalent To using Named Entity: ⋧</p>
<p id="point">Greater Than But Not Equivalent To using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Greater Than But Not Equivalent To symbol (⋧) is supported in modern browsers with a math-capable font:
👀 Live Preview
See the Greater Than But Not Equivalent To symbol (⋧) in order and equivalence contexts:
🧠 How It Works
Hexadecimal Code
⋧ uses the Unicode hexadecimal value 22E7 to display the symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
⋧ uses the decimal Unicode value 8935 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
\22E7 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+22E7 is in Mathematical Operators. Next: Greater Than Equal To.
Use Cases
The Greater Than But Not Equivalent To symbol (⋧) is commonly used in:
Partial orders and lattices where equivalence is defined separately (e.g. x ⋧ y).
Formal math distinguishing “equivalent” from numeric equality.
Academic papers, algebra courses, and online math references.
Specs that compare elements under a custom equivalence relation.
Modular arithmetic and 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 the symbol carries meaning
- Distinguish ⋧ from ≩ in documentation
- Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Use ⋧ when you mean numeric inequality (≩ or
>) - Assume readers know your equivalence relation without explanation
- Put CSS escape
\22E7in 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
\22E7Unicode U+22E7 — GREATER-THAN BUT NOT EQUIVALENT TO
Prefer ⋧ for readability in HTML source
Next: Greater Than Equal To
❓ Frequently Asked Questions
⋧ (hex), ⋧ (decimal), ⋧ (named), or \22E7 in CSS content. All produce ⋧.U+22E7 (GREATER-THAN BUT NOT EQUIVALENT TO). Mathematical Operators block (U+2200–U+22FF). Hex 22E7, decimal 8935. 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.Explore More HTML Entities!
Discover 1500+ HTML character references — math operators, order relations, and more.
8 people found this page helpful
