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

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
U+2970Supplemental Arrows-B
⥰Hexadecimal reference
⥰Decimal reference
—Use numeric codes only
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 (⤃)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2970";
}
</style>
</head>
<body>
<p>Symbol using Hexadecimal: ⥰</p>
<p>Symbol using HTML Code: ⥰</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Right Double Arrow With Rounded Head (⥰) renders in modern browsers when the font includes Supplemental Arrows-B glyphs:
👀 Live Preview
See the Right Double Arrow With Rounded Head (⥰) in navigation and UI contexts:
🧠 How It Works
Hexadecimal Code
⥰ uses the Unicode hexadecimal value 2970 to display the rightwards two headed arrow with rounded head. The x prefix indicates hexadecimal format.
Decimal HTML Code
⥰ uses the decimal Unicode value 10608 to display the same character.
CSS Entity
\2970 is used in CSS stylesheets in the content property of pseudo-elements like ::after for navigation and UI indicators.
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:
Next, forward, or continue controls with a stylized rounded-head double arrow.
Modern interfaces and interactive elements that need visually distinct arrow symbols.
Page navigation and list controls where a rounded-head arrow adds visual clarity.
Show direction or process flow with a specialized double-arrow variant.
Dashboards and app UI that use Supplemental Arrows-B symbols for navigation.
Next slide or next item controls in carousels and image galleries.
💡 Best Practices
Do
- Use
⥰or⥰in HTML—no named entity exists - Pair ⥰ with text (“Next”, “Continue”) or
aria-labelfor 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
\2970inside HTML text nodes - Confuse ⥰ with ⇒ (plain right double arrow /
⇒) - Confuse ⥰ with ⤃ (right double arrow vertical stroke /
⤃) - Assume legacy systems render Supplemental Arrows-B without testing
Key Takeaways
Two HTML numeric references plus CSS for U+2970
⥰ ⥰For CSS, use \2970 in the content property
Unicode U+2970 — RIGHTWARDS TWO HEADED ARROW WITH ROUNDED HEAD
Supplemental Arrows-B block (U+2900–U+297F) — no named entity
Previous: Right Double Arrow Vertical Stroke (⤃) Next: Right Double Dash Arrow
❓ Frequently Asked Questions
⥰ (hex), ⥰ (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.⥰ or ⥰) go in markup. The CSS escape \2970 is used in stylesheets, typically on ::before or ::after. Both produce ⥰.⥰) or decimal (⥰) codes. That is standard for such symbols in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — arrows, symbols, math operators, and more.
8 people found this page helpful
