HTML Entity for Equals Sign Above Right Arrow (⥱)

What You'll Learn
How to display the Equals Sign Above Right Arrow (⥱) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2971 (EQUALS SIGN ABOVE RIGHTWARDS ARROW) in the Supplemental Mathematical Operators block (U+2A00–U+2AFF)—an equals sign with a rightwards arrow above, used for implication-style and flow relations in math and logic.
Render it with ⥱, ⥱, the named entity ⥱, or CSS escape \2971. Do not confuse ⥱ with the rightwards double arrow (⇒, ⇒) or ordinary right arrow (→, →).
⚡ Quick Reference — Equals Sign Above Right Arrow
U+2971Supplemental Mathematical Operators
⥱Hexadecimal reference
⥱Decimal reference
⥱Equals above right arrow
Name Value
──────────── ──────────
Unicode U+2971
Hex code ⥱
HTML code ⥱
Named entity ⥱
CSS code \2971
Related U+21D2 = Rightwards double arrow (⇒ ⇒); U+2192 = Rightwards arrow (→ →)Complete HTML Example
This example demonstrates the Equals Sign 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: "\2971";
}
</style>
</head>
<body>
<p>Equals Sign Above Right Arrow using Hexadecimal: ⥱</p>
<p>Equals Sign Above Right Arrow using HTML Code: ⥱</p>
<p>Equals Sign Above Right Arrow using HTML Entity: ⥱</p>
<p id="point">Equals Sign Above Right Arrow using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Equals Sign Above Right Arrow entity is universally supported in modern browsers:
👀 Live Preview
See the equals sign above right arrow (⥱) compared with implication and right arrow symbols:
⥱ ⥱ vs ⇒ ⇒⥱ ⥱🧠 How It Works
Hexadecimal Code
⥱ uses the Unicode hexadecimal value 2971 to display this symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥱ uses the decimal Unicode value 10609 to display the same character.
Named Entity
⥱ is the semantic named entity for equals sign above right arrow to—easiest to read in geometry markup.
CSS Entity
\2971 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+2971 in the Supplemental Mathematical Operators block (U+2A00–U+2AFF).
Use Cases
The Equals Sign Above Right Arrow (⥱) commonly appears in:
Implication-style and relational notation in proofs.
Courses and docs on operators, relations, and proof notation.
Formal logic and mathematical definitions in technical writing.
Diagrams and specs with formal geometric notation.
Papers publishing correct operator symbols in HTML.
Math and geometry entity reference pages.
💡 Best Practices
Do
- Use
⥱for readable relation markup (U+2971) - Use
⇒(⇒) only when a double right arrow is intended - Use math-friendly fonts for clear ⥱ rendering
- Serve pages with UTF-8 (
<meta charset="utf-8">) - Add context when the symbol carries semantic meaning
Don’t
- Confuse ⥱ (
⥱) with ⇒ (⇒) or → (→) - Use ⥱ when simple equality (=) is sufficient
- Put CSS escape
\2971in HTML text nodes - Assume all fonts render Supplemental Math Operators (U+2971) clearly
- 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
\2971Unicode U+2971 — EQUALS SIGN ABOVE RIGHTWARDS ARROW
⥱ is the standard named entity
Double arrow is ⇒ (⇒, U+21D2)
❓ Frequently Asked Questions
⥱ (hex), ⥱ (decimal), ⥱ (named), or \2971 in CSS content. All produce ⥱.U+2971 (EQUALS SIGN ABOVE RIGHTWARDS ARROW). Supplemental Mathematical Operators block (U+2A00–U+2AFF). Hex 2971, decimal 10609.⥱ renders ⥱ (U+2971, equals sign above rightwards arrow). ⇒ renders ⇒ (U+21D2, rightwards double arrow). Different Unicode characters and meanings.⥱, ⥱, or ⥱) go directly in markup. The CSS escape \2971 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 — supplemental operators, arrows, and more.
8 people found this page helpful
