HTML Entity for Three Right Arrows (⇶)

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

What You'll Learn

How to display the Three Right Arrows symbol (⇶) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+21F6 (THREE RIGHT ARROWS) in the Arrows block (U+2190–U+21FF)—three stacked arrows pointing right, commonly used for navigation and forward-movement UI.

Render it with ⇶, ⇶, or CSS escape \21F6. There is no named HTML entity. Do not confuse ⇶ with → (RIGHTWARDS ARROW, U+2192) or ⇵ (THREE LEFT ARROWS, U+21F5).

⚡ Quick Reference — Three Right Arrows

Unicode U+21F6

Arrows block

Hex Code ⇶

Hexadecimal reference

HTML Code ⇶

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21F6
Hex code       ⇶
HTML code      ⇶
Named entity   (none)
CSS code       \21F6
Block          Arrows (U+2190–U+21FF)
Official name  THREE RIGHT ARROWS
Related        U+21F5 = Three Left Arrows (⇵)
1

Complete HTML Example

This example demonstrates the Three Right Arrows symbol (⇶) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\21F6";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x21F6;</p>
<p>Using HTML Code: &#8694;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Three Right Arrows symbol renders in modern browsers when fonts include Arrows block glyphs:

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

👀 Live Preview

See the Three Right Arrows symbol (⇶) in navigation context:

Next step Continue ⇶
Large glyph
vs single arrow → one   ⇶ three right
Numeric refs &#x21F6; &#8694; \21F6

🧠 How It Works

1

Hexadecimal Code

&#x21F6; uses the Unicode hexadecimal value 21F6 to display the Three Right Arrows symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\21F6 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+21F6 in the Arrows block (U+2190–U+21FF). No named entity.

Use Cases

The Three Right Arrows symbol (⇶) commonly appears in:

🗼 Navigation Icons

Menus, breadcrumbs, and nav bars for forward movement.

💻 UI Design

Buttons and interactive elements showing multiple forward actions.

🗺 Directional Indicators

Maps, directions, and wayfinding interfaces.

▶ Pagination

Carousel controls and multi-step forward navigation.

📝 Step Processes

Tutorials, wizards, and guided multi-step flows.

📈 Progress Indicators

Workflow visualizations representing forward movement.

🎨 Creative Projects

Design projects needing directional symbolism.

💡 Best Practices

Do

  • Use &#x21F6; or &#8694; for the triple-arrow glyph
  • Add aria-label (e.g. “Next”) when used as a standalone control
  • Pair with visible text like “Continue” for clarity
  • Use CSS font-size to scale in UI components
  • Test rendering across browsers and font stacks

Don’t

  • Confuse ⇶ (three arrows) with → (single right arrow)
  • Rely on the symbol alone without accessible labeling in buttons
  • Put CSS escape \21F6 directly in HTML text nodes
  • Expect a named HTML entity for U+21F6—use numeric references
  • Use HTML entities in JS (use \u21F6 instead)

Key Takeaways

1

Two HTML references both render ⇶

&#x21F6; &#8694;
2

For CSS stylesheets, use the escape in the content property

\21F6
3

Unicode U+21F6 — THREE RIGHT ARROWS

4

No named entity—use numeric references or CSS escape

5

Part of the Arrows block (U+2190–U+21FF) for directional symbols

❓ Frequently Asked Questions

Use &#x21F6; (hex), &#8694; (decimal), or \21F6 in CSS content. There is no named HTML entity. All three produce ⇶.
U+21F6 (THREE RIGHT ARROWS). Arrows block (U+2190–U+21FF). Hex 21F6, decimal 8694. Three stacked arrows pointing right.
In navigation icons, UI buttons, directional indicators, pagination controls, step-by-step processes, and any content representing multiple forward or rightward movements.
HTML numeric references (&#8694; or &#x21F6;) go directly in markup. The CSS escape \21F6 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover common ASCII, Latin-1, and select symbols. Characters like ⇶ in the Arrows block use numeric hex or decimal references—standard practice for directional arrow symbols.

Explore More HTML Entities!

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