HTML Entity for Tilde Operator Above Right Arrow (⥲)

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

What You'll Learn

How to display the Tilde Operator Above Right Arrow symbol (⥲) in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+2972 (TILDE OPERATOR ABOVE RIGHTWARDS ARROW) in the Supplemental Arrows-B block (U+2900–U+297F)—a math arrow with a tilde operator above a rightwards arrow.

Render it with ⥲, ⥲, the named entity ⥲, or CSS escape \2972. Do not confuse ⥲ with → (RIGHTWARDS ARROW) or ⇶ (THREE RIGHTWARDS ARROWS).

⚡ Quick Reference — Tilde Operator Above Right Arrow

Unicode U+2972

Supplemental Arrows-B

Hex Code ⥲

Hexadecimal reference

HTML Code ⥲

Decimal reference

Named Entity ⥲

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2972
Hex code       ⥲
HTML code      ⥲
Named entity   ⥲
CSS code       \2972
Block          Supplemental Arrows-B (U+2900–U+297F)
Official name  TILDE OPERATOR ABOVE RIGHTWARDS ARROW
Related        U+223C; = Tilde Operator (∼), U+21F6; = Three Right Arrows (⇶)
1

Complete HTML Example

This example demonstrates the Tilde Operator Above Right Arrow symbol (⥲) using hexadecimal code, decimal HTML code, named entity, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2972";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x2972;</p>
<p>Using HTML Code: &#10610;</p>
<p>Using Named Entity: &simrarr;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The symbol renders in modern browsers when fonts include Supplemental Arrows-B glyphs:

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

👀 Live Preview

See the Tilde Operator Above Right Arrow symbol (⥲) in context:

Relation AB
Large glyph
Arrow set →     ⥲
Numeric refs &#x2972; &#10610; &simrarr; \2972

🧠 How It Works

1

Hexadecimal Code

&#x2972; uses the Unicode hexadecimal value 2972 to display the symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2972 is used in CSS stylesheets in the content property of pseudo-elements.

CSS stylesheet
4

Named Entity

&simrarr; is the semantic named entity — short for “similar right arrow”.

HTML markup
=

Same visual result

All four methods produce the glyph: . Unicode U+2972 in the Supplemental Arrows-B block.

Use Cases

The Tilde Operator Above Right Arrow symbol (⥲) commonly appears in:

📐 Math Notation

Equations showing tilde-over-arrow relations.

🧠 Logic

Formal logic and implication-style statements.

🔬 Set Theory

Set relationships and transformations.

📄 Scientific Docs

Research papers and academic publications.

📝 Proofs

Theorem statements and formal demonstrations.

🎓 Education

Mathematics textbooks and instructional content.

💻 Technical Specs

Algorithm descriptions and formal specifications.

💡 Best Practices

Do

  • Prefer &simrarr; for readable source markup
  • Use math-friendly fonts for arrow symbols
  • Pick one style (hex / decimal / named) per project
  • Add aria-label for standalone symbols in UI
  • Test rendering across browsers and font stacks

Don’t

  • Confuse ⥲ with plain → or ⇶
  • Mix entity styles randomly in one file
  • Put CSS escape \2972 directly in HTML text nodes
  • Use HTML entities in JS (use \u2972 instead)
  • Assume all fonts render ⥲ clearly at small sizes

Key Takeaways

1

Three HTML references all render ⥲

&#x2972; &#10610; &simrarr;
2

For CSS stylesheets, use the escape in the content property

\2972
3

Unicode U+2972 — TILDE OPERATOR ABOVE RIGHTWARDS ARROW

4

Prefer &simrarr; for readability in HTML source

5

Part of Supplemental Arrows-B (U+2900–U+297F)

❓ Frequently Asked Questions

Use &#x2972; (hex), &#10610; (decimal), &simrarr; (named), or \2972 in CSS content. All produce ⥲.
U+2972 (TILDE OPERATOR ABOVE RIGHTWARDS ARROW). Supplemental Arrows-B block (U+2900–U+297F). Hex 2972, decimal 10610.
In mathematical notation, logical statements, set theory, scientific documentation, academic papers, mathematical proofs, and any formal content representing a tilde operator above a right arrow.
The named entity &simrarr; is more readable in source code. Numeric references (&#10610; or &#x2972;) are more explicit. CSS escape \2972 is for stylesheets only. All produce ⥲.
&simrarr; is the named HTML entity for ⥲. The name simrarr stands for similar right arrow and is part of the HTML5 standard.

Explore More HTML Entities!

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