HTML Entity for Right Arrow Above Almost Equal To (⥵)

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

What You'll Learn

How to display the Right Arrow Above Almost Equal To (⥵) in HTML using numeric references, the named entity, and CSS escapes. This character is U+2975 (RIGHT ARROW ABOVE ALMOST EQUAL TO) in the Supplemental Arrows-C block (U+2900–U+297F)—a specialized mathematical and logical arrow symbol.

You can use the named entity ⥵, hex ⥵, decimal ⥵, or CSS \2975. Do not confuse ⥵ with plain U+2192 (→, right arrow) or U+2248 (≈, almost equal to) used separately.

⚡ Quick Reference — Right Arrow Above Almost Equal To

Unicode U+2975

Supplemental Arrows-C (U+2900–U+297F)

Hex Code ⥵

Hexadecimal reference

HTML Code ⥵

Decimal reference

Named Entity ⥵

Standard HTML entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2975
Hex code       ⥵
HTML code      ⥵
Named entity   ⥵
CSS code       \2975
Meaning        Right arrow above almost equal to
Related        U+2192 = right arrow (→)
               U+2248 = almost equal to (≈)
               U+2974 = right arrow through less-than (⥴)
Block          Supplemental Arrows-C (U+2900–U+297F)
1

Complete HTML Example

A simple example showing ⥵ using hexadecimal code, decimal HTML code, the named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2975";
  }
 </style>
</head>
<body>
<p>Hex: &#x2975;</p>
<p>Decimal: &#10613;</p>
<p>Named: &rarrap;</p>
<p id="point">CSS: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2975 is supported in all modern browsers when a font with Supplemental Arrows-C coverage is available:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Right Arrow Above Almost Equal To (⥵) in mathematical and logical contexts:

Single symbol
Logic notation A ⥵ B
Compare arrows →   ⥵   ⥴
With almost equal ≈ vs ⥵
Named entity &rarrap;

🧠 How It Works

1

Hexadecimal Code

&#x2975; uses Unicode hex 2975 to display the right arrow above almost equal to symbol.

HTML markup
2

Decimal HTML Code

&#10613; is the decimal equivalent (10613) for the same character.

HTML markup
3

Named HTML Entity

&rarrap; is the standard named entity for U+2975—readable in HTML source.

HTML markup
4

CSS Entity

\2975 is the CSS escape for U+2975, used in pseudo-element content.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+2975 in Supplemental Arrows-C. Next: Right Arrow Above Short Left Arrow.

Use Cases

The Right Arrow Above Almost Equal To (⥵) is commonly used in:

🔢 Math notation

Formal expressions, proofs, and mathematical documentation.

📝 Logic symbols

Logical statements and formal logic with almost-equal relationships.

🎓 Academic papers

Research documents and scholarly articles requiring precise notation.

💻 Technical writing

Specifications, algorithm descriptions, and formal documentation.

📋 Computer science

Formal specifications and notation in CS textbooks and papers.

♿ Accessibility

Provide plain-language context alongside the symbol for screen readers.

💡 Best Practices

Do

  • Use &rarrap; for readable markup in HTML source
  • Set <meta charset="utf-8"> for reliable rendering
  • Use a font with good mathematical symbol coverage for academic content
  • Link to Right Arrow and Asymptotically Equal To for related symbols
  • Pick one reference style per project for consistency

Don’t

  • Confuse ⥵ with → (plain right arrow) or ≈ (almost equal to alone)
  • Use padded Unicode notation like U+02975—the correct value is U+2975
  • Use CSS escape \2975 in HTML text nodes
  • Stack → and ≈ manually when the combined glyph ⥵ is intended
  • Assume every system font renders Supplemental Arrows-C without testing

Key Takeaways

1

Four ways to render U+2975 in HTML and CSS

&rarrap; &#10613;
2

For CSS stylesheets, use \2975 in the content property

3

Unicode U+2975 — RIGHT ARROW ABOVE ALMOST EQUAL TO (⥵)

4

Distinct from plain right arrow →, almost equal ≈, and other Supplemental Arrows-C glyphs

❓ Frequently Asked Questions

Use &rarrap; (named entity), &#x2975; (hex), &#10613; (decimal), or \2975 in CSS content. All four render ⥵.
U+2975 (RIGHT ARROW ABOVE ALMOST EQUAL TO). Supplemental Arrows-C block (U+2900–U+297F). Hex 2975, decimal 10613.
No. ⥵ (U+2975) combines a right arrow with an almost equal to mark above. → (U+2192) is a plain rightwards arrow. They are different Unicode characters.
For mathematical notation, logic symbols, formal logic statements, academic papers, and technical documentation that require a rightward arrow with an almost-equal relationship above it.
&rarrap; is the standard named entity for U+2975 and is the most readable option in HTML source.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, math operators, punctuation, 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