HTML Entity for Equals Sign Above Right Arrow (⥱)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+2971

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

Unicode U+2971

Supplemental Mathematical Operators

Hex Code ⥱

Hexadecimal reference

HTML Code ⥱

Decimal reference

Named Entity ⥱

Equals above right arrow

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2971
Hex code       ⥱
HTML code      ⥱
Named entity   ⥱
CSS code       \2971
Related        U+21D2 = Rightwards double arrow (⇒ ⇒); U+2192 = Rightwards arrow (→ →)
1

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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2971";
  }
 </style>
</head>
<body>
<p>Equals Sign Above Right Arrow using Hexadecimal: &#x2971;</p>
<p>Equals Sign Above Right Arrow using HTML Code: &#10609;</p>
<p>Equals Sign Above Right Arrow using HTML Entity: &erarr;</p>
<p id="point">Equals Sign Above Right Arrow using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Equals Sign Above Right Arrow entity is universally supported in modern browsers:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the equals sign above right arrow (⥱) compared with implication and right arrow symbols:

Relation PQ
Large glyph
vs arrows &erarr; ⥱   vs   &rArr;
Entities &erarr;
Numeric refs &#x2971; &#10609; &erarr;

🧠 How It Works

1

Hexadecimal Code

&#x2971; uses the Unicode hexadecimal value 2971 to display this symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#10609; uses the decimal Unicode value 10609 to display the same character.

HTML markup
3

Named Entity

&erarr; is the semantic named entity for equals sign above right arrow to—easiest to read in geometry markup.

HTML markup
4

CSS Entity

\2971 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

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:

📐 Logic

Implication-style and relational notation in proofs.

🎓 Education

Courses and docs on operators, relations, and proof notation.

📝 Logic

Formal logic and mathematical definitions in technical writing.

💻 Engineering

Diagrams and specs with formal geometric notation.

📰 Research

Papers publishing correct operator symbols in HTML.

🌐 Symbol guides

Math and geometry entity reference pages.

💡 Best Practices

Do

  • Use &erarr; for readable relation markup (U+2971)
  • Use &rArr; (⇒) 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 ⥱ (&erarr;) with ⇒ (&rArr;) or → (&rarr;)
  • Use ⥱ when simple equality (=) is sufficient
  • Put CSS escape \2971 in HTML text nodes
  • Assume all fonts render Supplemental Math Operators (U+2971) clearly
  • Mix entity styles randomly in one file

Key Takeaways

1

Three HTML references plus CSS all render ⥱

&#x2971; &#10609; &erarr;
2

For CSS stylesheets, use the escape in the content property

\2971
3

Unicode U+2971 — EQUALS SIGN ABOVE RIGHTWARDS ARROW

4

&erarr; is the standard named entity

5

Double arrow is ⇒ (&rArr;, U+21D2)

❓ Frequently Asked Questions

Use &#x2971; (hex), &#10609; (decimal), &erarr; (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.
When your notation needs an equals sign with a rightwards arrow above it for relations, implications, or specialized flow—not a plain arrow alone.
&erarr; renders ⥱ (U+2971, equals sign above rightwards arrow). &rArr; renders ⇒ (U+21D2, rightwards double arrow). Different Unicode characters and meanings.
HTML entities (&#10609;, &#x2971;, or &erarr;) 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.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful