HTML Entity for Right Double Dash Arrow (⤍)

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

What You'll Learn

How to display the Right Double Dash Arrow (⤍) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+290D (RIGHTWARDS DOUBLE DASH ARROW) in the Supplemental Arrows-B block (U+2900–U+297F)—a right-pointing double dash arrow used in navigation, flow diagrams, mathematical notation, and directional indicators.

Render it with ⤍ (named), ⤍, ⤍, or CSS \290D. Related: U+21E2 (⇢, right dashed arrow), U+21D2 (⇒, right double arrow / ⇒), U+290C (⤌, left double dash arrow / ⤌).

⚡ Quick Reference — Right Double Dash Arrow

Unicode U+290D

Supplemental Arrows-B

Hex Code ⤍

Hexadecimal reference

HTML Code ⤍

Decimal reference

Named Entity ⤍

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+290D
Hex code       ⤍
HTML code      ⤍
Named entity   ⤍
CSS code       \290D
Meaning        Rightwards double dash arrow
Related        U+21E2 = right dashed arrow (⇢)
               U+21D2 = right double arrow (⇒)
1

Complete HTML Example

A simple example showing the Right Double Dash Arrow (⤍) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\290D";
  }
 </style>
</head>
<body>
<p>Symbol using Hexadecimal: &#x290D;</p>
<p>Symbol using HTML Code: &#10509;</p>
<p>Symbol using HTML Entity: &rbarr;</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>
Try It Yourself

🌐 Browser Support

The Right Double Dash Arrow (⤍) 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 Dash Arrow (⤍) in navigation and diagram contexts:

Next link Next ⤍
Flow step Step 1 ⤍ Step 2
Dash arrow Start ⤍
Large glyph
Arrow comparison ⇢ ⇒ ⤍ ⥰
Entity refs &rbarr; &#x290D; &#10509; \290D

🧠 How It Works

1

Named HTML Entity

&rbarr; is the named entity for the Right Double Dash Arrow (rightwards double dash arrow). Easy to read in navigation and UI markup.

HTML markup
2

Hexadecimal Code

&#x290D; uses the Unicode hexadecimal value 290D. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#10509; uses the decimal Unicode value 10509 for the same symbol.

HTML markup
4

CSS Entity

\290D is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+290D is in Supplemental Arrows-B. Previous: Right Double Arrow With Rounded Head (⥰).

Use Cases

The Right Double Dash Arrow (⤍) is commonly used in:

🧭 Navigation

Indicate “next” or “forward” with a double-dash arrow in menus and UI.

📊 Flow diagrams

Show direction or process flow where a double-dash arrow variant is desired.

📐 Math notation

Represent relationships and transformations in mathematical documents.

📄 Technical docs

API guides, system architecture diagrams, and technical documentation.

🎯 UI icons

Decorative or functional right double dash arrow in buttons, labels, and icons.

🖼 Carousels

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

💡 Best Practices

Do

  • Prefer &rbarr; in HTML for readability
  • Pair ⤍ with text (“Next”, “Continue”) or aria-label for accessibility
  • Use fonts that support Supplemental Arrows-B (U+290D)
  • Set <meta charset="utf-8">
  • Keep one encoding style per project for consistency
  • Distinguish ⤍ from ⇢ when double-dash vs single-dash matters

Don’t

  • Confuse &rbarr; (U+290D) with &rarr; (U+2192, simple right arrow)
  • Confuse &rbarr; with &rArr; (U+21D2, plain right double arrow)
  • Use CSS \290D inside HTML text nodes
  • Assume legacy systems render Supplemental Arrows-B without testing
  • Mix named and numeric entities inconsistently in the same component

Key Takeaways

1

Four ways to render U+290D in HTML and CSS

&rbarr; &#x290D; &#10509;
2

For CSS, use \290D in the content property

3

Unicode U+290D — RIGHTWARDS DOUBLE DASH ARROW

4

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

❓ Frequently Asked Questions

Use &rbarr; (named), &#x290D; (hex), &#10509; (decimal), or \290D in CSS content. All four methods render ⤍ correctly.
U+290D (RIGHTWARDS DOUBLE DASH ARROW). Supplemental Arrows-B block (U+2900–U+297F). Hex 290D, decimal 10509. A right-pointing double dash arrow.
In navigation UI, flow diagrams, next or forward links, mathematical notation, technical documentation, directional indicators, and process flow visualizations.
Named and numeric HTML references (&rbarr;, &#10509;, &#x290D;) go in markup. The CSS escape \290D is used in stylesheets, typically on ::before or ::after. Both produce ⤍.
Yes. &rbarr; is the named HTML entity for U+290D. You can also use &#10509; (decimal) or &#x290D; (hex) and \290D in CSS.

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