HTML Entity for Right Two Headed Arrow (↠)

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

What You'll Learn

How to display the Right Two Headed Arrow (↠) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+21A0 (RIGHTWARDS TWO HEADED ARROW) in the Arrows block (U+2190–U+21FF)—a two-headed arrow pointing right, used for bidirectional flow, forked paths, and navigation notation.

Render it with ↠ (named), ↠, ↠, or CSS \21A0. Do not confuse ↠ with U+2192 (→, single arrow / →) or U+21D2 (⇒, double arrow / ⇒).

⚡ Quick Reference — Right Two Headed Arrow

Unicode U+21A0

Arrows

Hex Code ↠

Hexadecimal reference

HTML Code ↠

Decimal reference

Named Entity ↠

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21A0
Hex code       ↠
HTML code      ↠
Named entity   ↠
CSS code       \21A0
Meaning        Right two headed arrow (forked arrowhead, points right)
Related        U+2192 = rightwards arrow (→ / →)
               U+21D2 = rightwards double arrow (⇒ / ⇒)
1

Complete HTML Example

A simple example showing the Right Two Headed Arrow (↠) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\21A0";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x21a0;</p>
<p>Symbol (decimal): &#8608;</p>
<p>Symbol (named): &Rarr;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Right Two Headed Arrow (↠) is universally supported in all modern browsers when the font includes Arrows glyphs:

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

👀 Live Preview

See the Right Two Headed Arrow (↠) rendered live in different contexts:

Inline navigation Branch ↠ to multiple paths.
Large glyph
Flow notation A ↠ B and A ↠ C
Arrow comparison → ↠ ⇒
Named vs numeric &Rarr; &#x21A0; &#8608; \21A0
Diagrams Use ↠ for forked or two-way rightward connections.

🧠 How It Works

1

Hexadecimal Code

&#x21A0; uses the Unicode hexadecimal value 21A0 for the right two headed arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&Rarr; is the semantic named entity — the easiest to read in source HTML and the most self-descriptive option.

HTML markup
4

CSS Entity

\21A0 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+21A0 is in the Arrows block. Previous: Right Triple Dash Arrow.

Use Cases

The Right Two Headed Arrow (↠) is commonly used in:

⇄ Bidirectional Flow

Indicate two-way relationships, mutual connections, or forked paths.

🔗 Navigation

Use in menus and flows that branch to multiple destinations.

📊 Flowcharts

Show split paths and two-headed directional links in diagrams.

📄 Technical Diagrams

Include in architecture diagrams with forked or dual connections.

🛠 Process Flows

Document workflows with branching or two-way process steps.

📚 Documentation

Reference bidirectional API or system relationships in HTML docs.

💡 Best Practices

Do

  • Use &Rarr; for readable source markup
  • Add aria-label or surrounding text for accessibility
  • Distinguish ↠ (two headed) from → (single) and ⇒ (double)
  • Verify your font supports Arrows (U+21A0)
  • Keep one entity style per project for consistency

Don’t

  • Confuse ↠ with → (simple arrow) or ⇒ (double arrow)
  • Confuse &Rarr; with &rArr; (different symbols and codes)
  • Use CSS \21A0 inside HTML text nodes
  • Rely on the arrow alone without context for screen readers
  • Mix entity styles randomly in one file
  • Assume all fonts render two-headed arrow glyphs identically

Key Takeaways

1

Four HTML references plus CSS all render ↠

&#x21A0; &#8608; &Rarr;
2

For CSS, use \21A0 in the content property

3

Unicode U+21A0 — RIGHTWARDS TWO HEADED ARROW

4

Prefer &Rarr; for readability—it’s the named HTML entity

❓ Frequently Asked Questions

Use &#x21A0; (hex), &#8608; (decimal), &Rarr; (named), or \21A0 in CSS content. All four methods render ↠ correctly.
U+21A0 (RIGHTWARDS TWO HEADED ARROW). Arrows block (U+2190–U+21FF). Hex 21A0, decimal 8608. A two-headed arrow pointing to the right.
In bidirectional indicators, navigation elements, flowcharts, diagrams, process flows, and technical documentation where forked or two-way rightward connections are needed.
HTML references (&#8608;, &#x21A0;, or &Rarr;) go in markup. The CSS escape \21A0 is used in stylesheets, typically on ::before or ::after. Both produce ↠.
Yes. &Rarr; is the named HTML entity for U+21A0. You can also use &#8608; (decimal) or &#x21A0; (hex) and \21A0 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