HTML Entity for Greater Than Above Right Arrow (⥸)

What You'll Learn
How to display the Greater Than Above Right Arrow (⥸) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2978 (GREATER-THAN ABOVE RIGHTWARDS ARROW) in the Supplemental Mathematical Operators block (U+2900–U+297F).
Render it with ⥸, ⥸, ⥸, or CSS escape \2978. It combines a greater-than relation with a rightward arrow—useful in math notation, flowcharts, and directional UI. Not the same as plain Greater Than (>, U+003E).
⚡ Quick Reference — Greater Than Above Right Arrow
U+2978Supplemental Math Operators
⥸Hexadecimal reference
⥸Decimal reference
⥸Most readable option
Name Value
──────────── ──────────
Unicode U+2978
Hex code ⥸
HTML code ⥸
Named entity ⥸
CSS code \2978
Meaning Greater-than above rightwards arrow
Not to confuse U+003E = greater-than sign (>)Complete HTML Example
This example demonstrates the Greater Than Above Right Arrow (⥸) using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2978";
}
</style>
</head>
<body>
<p>Greater Than Above Right Arrow using Hexadecimal: ⥸</p>
<p>Greater Than Above Right Arrow using Decimal: ⥸</p>
<p>Greater Than Above Right Arrow using Named Entity: ⥸</p>
<p id="point">Greater Than Above Right Arrow using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Greater Than Above Right Arrow (⥸) is supported in modern browsers with a math-capable font:
👀 Live Preview
See the Greater Than Above Right Arrow (⥸) in math and diagram contexts:
🧠 How It Works
Hexadecimal Code
⥸ uses the Unicode hexadecimal value 2978 to display the symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥸ uses the decimal Unicode value 10616 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
\2978 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+2978 is in Supplemental Mathematical Operators. Next: Greater Than But Not Equal To.
Use Cases
The Greater Than Above Right Arrow (⥸) is commonly used in:
Relations and mappings in proofs, algebra, and set theory (e.g. x ⥸ y).
Process flows that express comparison plus rightward progression.
Wizards and guides indicating “proceed right if condition met.”
APIs, logic rules, and state machines using this operator.
Formal notation combining comparison and direction.
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
- Provide context for accessibility when the symbol carries meaning
- Test rendering on target browsers and devices
- Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse ⥸ with plain
>(U+003E) - Assume every system font includes Supplemental Math Operators
- Put CSS escape
\2978in HTML text nodes - Rely on the symbol alone without explanatory text for screen readers
- Mix entity styles randomly in one file
Key Takeaways
Three HTML references plus CSS all render ⥸
⥸ ⥸ ⥸For CSS stylesheets, use the escape in the content property
\2978Unicode U+2978 — GREATER-THAN ABOVE RIGHTWARDS ARROW
Prefer ⥸ for readability in HTML source
❓ Frequently Asked Questions
⥸ (hex), ⥸ (decimal), ⥸ (named), or \2978 in CSS content. All produce ⥸.U+2978 (GREATER-THAN ABOVE RIGHTWARDS ARROW). Supplemental Mathematical Operators block (U+2900–U+297F). Hex 2978, decimal 10616. 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.⥸, ⥸, or ⥸) go in markup. The CSS escape \2978 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, arrows, and more.
8 people found this page helpful
