HTML Entity for Right Triple Arrow (⇛)

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

What You'll Learn

How to display the Right Triple Arrow (⇛) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+21DB (RIGHTWARDS TRIPLE ARROW) in the Arrows block (U+2190–U+21FF)—a triple-line arrow pointing right, used for navigation, flowcharts, and directional emphasis.

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

⚡ Quick Reference — Right Triple Arrow

Unicode U+21DB

Arrows

Hex Code ⇛

Hexadecimal reference

HTML Code ⇛

Decimal reference

Named Entity ⇛

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21DB
Hex code       ⇛
HTML code      ⇛
Named entity   ⇛
CSS code       \21DB
Meaning        Right triple arrow (three lines, points right)
Related        U+2192 = rightwards arrow (→ / →)
               U+21D2 = rightwards double arrow (⇒)
1

Complete HTML Example

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

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

🌐 Browser Support

The Right Triple 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 Triple Arrow (⇛) rendered live in different contexts:

Inline navigation Continue ⇛ to the next step.
Large glyph
Flow notation Start → Process ⇛ End
Arrow comparison → ⇒ ⇛
Named vs numeric &rAarr; &#x21DB; &#8667; \21DB
Diagrams Use ⇛ for strong directional flow in flowcharts.

🧠 How It Works

1

Hexadecimal Code

&#x21DB; uses the Unicode hexadecimal value 21DB for the right triple arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

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

HTML markup
4

CSS Entity

\21DB 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+21DB is in the Arrows block. Previous: Right Triangle.

Use Cases

The Right Triple Arrow (⇛) is commonly used in:

🚀 Directional Indicators

Show strong rightward movement in navigation guides and wayfinding UI.

🔗 Navigation

Use in menus, breadcrumbs, and multi-step flows that need emphasis.

📊 Flowcharts

Mark emphasized directional flow in process and workflow diagrams.

📄 Technical Diagrams

Include in architecture and system diagrams with strong rightward links.

🛠 Process Flows

Document step-by-step guides and workflow transitions.

🎨 Graphic Design

Add to infographics and visual content for bold directional cues.

💡 Best Practices

Do

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

Don’t

  • Confuse ⇛ with → (simple right arrow) or ⇒ (double arrow)
  • Use CSS \21DB 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 arrow symbols identically
  • Use triple arrows where a single arrow would suffice

Key Takeaways

1

Four HTML references plus CSS all render ⇛

&#x21DB; &#8667; &rAarr;
2

For CSS, use \21DB in the content property

3

Unicode U+21DB — RIGHTWARDS TRIPLE ARROW

4

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

❓ Frequently Asked Questions

Use &#x21DB; (hex), &#8667; (decimal), &rAarr; (named), or \21DB in CSS content. All four methods render ⇛ correctly.
U+21DB (RIGHTWARDS TRIPLE ARROW). Arrows block (U+2190–U+21FF). Hex 21DB, decimal 8667. A triple-line arrow pointing to the right.
In directional indicators, navigation elements, flowcharts, diagrams, process flows, and graphic design where strong rightward movement or emphasis is needed.
HTML references (&#8667;, &#x21DB;, or &rAarr;) go in markup. The CSS escape \21DB is used in stylesheets, typically on ::before or ::after. Both produce ⇛.
Yes. &rAarr; is the named HTML entity for U+21DB. You can also use &#8667; (decimal) or &#x21DB; (hex) and \21DB 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