HTML Entity for Right Double Arrow With Rounded Head (⥰)

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

What You'll Learn

How to display the Right Double Arrow With Rounded Head (⥰) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+2970 (RIGHTWARDS TWO HEADED ARROW WITH ROUNDED HEAD) in the Supplemental Arrows-B block (U+2900–U+297F)—a stylized right-pointing double arrow with a rounded head, used in navigation buttons, UI design, interactive elements, and directional indicators.

Render it with ⥰, ⥰, or CSS \2970. There is no named HTML entity. Related: U+21D2 (⇒, right double arrow / ⇒), U+2903 (⤃, right double arrow vertical stroke / ⤃).

⚡ Quick Reference — Right Double Arrow With Rounded Head

Unicode U+2970

Supplemental Arrows-B

Hex Code ⥰

Hexadecimal reference

HTML Code ⥰

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2970
Hex code       ⥰
HTML code      ⥰
Named entity   (none)
CSS code       \2970
Meaning        Rightwards two headed arrow with rounded head
Related        U+21D2 = right double arrow (⇒)
               U+2903 = right double arrow vertical stroke (⤃)
1

Complete HTML Example

A simple example showing the Right Double Arrow With Rounded Head (⥰) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2970";
  }
 </style>
</head>
<body>
<p>Symbol using Hexadecimal: &#x2970;</p>
<p>Symbol using HTML Code: &#10608;</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Right Double Arrow With Rounded Head (⥰) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:

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

👀 Live Preview

See the Right Double Arrow With Rounded Head (⥰) in navigation and UI contexts:

Next button Next ⥰
Pagination Page 1 ⥰ Page 2
Flow step Step 1 ⥰ Step 2
Large glyph
Arrow comparison ⇒ ⤃ ⥰ ⤜
Numeric refs &#x2970; &#10608; \2970

🧠 How It Works

1

Hexadecimal Code

&#x2970; uses the Unicode hexadecimal value 2970 to display the rightwards two headed arrow with rounded head. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2970 is used in CSS stylesheets in the content property of pseudo-elements like ::after for navigation and UI indicators.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2970 is in Supplemental Arrows-B. Previous: Right Double Arrow Vertical Stroke (⤃). Next: Right Double Dash Arrow.

Use Cases

The Right Double Arrow With Rounded Head (⥰) is commonly used in:

🧭 Navigation buttons

Next, forward, or continue controls with a stylized rounded-head double arrow.

🎨 UI design

Modern interfaces and interactive elements that need visually distinct arrow symbols.

📄 Pagination

Page navigation and list controls where a rounded-head arrow adds visual clarity.

📊 Flow diagrams

Show direction or process flow with a specialized double-arrow variant.

📱 Web apps

Dashboards and app UI that use Supplemental Arrows-B symbols for navigation.

🖼 Carousels

Next slide or next item controls in carousels and image galleries.

💡 Best Practices

Do

  • Use &#10608; or &#x2970; in HTML—no named entity exists
  • Pair ⥰ with text (“Next”, “Continue”) or aria-label for accessibility
  • Use fonts that support Supplemental Arrows-B (U+2970)
  • Set <meta charset="utf-8">
  • Keep one numeric style (hex or decimal) per project
  • Distinguish ⥰ from ⇒ when rounded-head variant matters

Don’t

  • Expect a named HTML entity for U+2970
  • Use CSS \2970 inside HTML text nodes
  • Confuse ⥰ with ⇒ (plain right double arrow / &rArr;)
  • Confuse ⥰ with ⤃ (right double arrow vertical stroke / &nvrArr;)
  • Assume legacy systems render Supplemental Arrows-B without testing

Key Takeaways

1

Two HTML numeric references plus CSS for U+2970

&#x2970; &#10608;
2

For CSS, use \2970 in the content property

3

Unicode U+2970 — RIGHTWARDS TWO HEADED ARROW WITH ROUNDED HEAD

4

Supplemental Arrows-B block (U+2900–U+297F) — no named entity

❓ Frequently Asked Questions

Use &#x2970; (hex), &#10608; (decimal), or \2970 in CSS content. There is no named entity. All three methods render ⥰ correctly.
U+2970 (RIGHTWARDS TWO HEADED ARROW WITH ROUNDED HEAD). Supplemental Arrows-B block (U+2900–U+297F). Hex 2970, decimal 10608. A stylized right double arrow with a rounded head.
In navigation buttons, UI design, interactive web elements, pagination controls, directional indicators, and any content that requires a stylized right double arrow with a rounded head.
HTML references (&#10608; or &#x2970;) go in markup. The CSS escape \2970 is used in stylesheets, typically on ::before or ::after. Both produce ⥰.
Named entities cover common characters; arrow symbols like U+2970 in Supplemental Arrows-B use numeric hex (&#x2970;) or decimal (&#10608;) codes. That is standard for such symbols in HTML.

Explore More HTML Entities!

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