HTML Entity for Right Dashed Arrow (⇢)

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

What You'll Learn

How to display the Right Dashed Arrow (⇢) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+21E2 (RIGHTWARDS DASHED ARROW) in the Arrows block (U+2190–U+21FF)—a right-pointing dashed arrow used in navigation, flow diagrams, next links, and directional indicators.

Render it with ⇢, ⇢, or CSS \21E2. There is no named HTML entity. Related: U+2192 (→, simple right arrow / →), U+21E0 (⇠, left dashed arrow).

⚡ Quick Reference — Right Dashed Arrow

Unicode U+21E2

Arrows block

Hex Code ⇢

Hexadecimal reference

HTML Code ⇢

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21E2
Hex code       ⇢
HTML code      ⇢
Named entity   (none)
CSS code       \21E2
Meaning        Rightwards dashed arrow
Related        U+2192 = right arrow (→)
               U+21E0 = left dashed arrow (⇠)
1

Complete HTML Example

A simple example showing the Right Dashed Arrow (⇢) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\21E2";
  }
 </style>
</head>
<body>
<p>Symbol using Hexadecimal: &#x21E2;</p>
<p>Symbol using HTML Code: &#8674;</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Right Dashed Arrow (⇢) renders in modern browsers when the font includes Arrows block glyphs:

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

👀 Live Preview

See the Right Dashed Arrow (⇢) in navigation and diagram contexts:

Next link Next ⇢
Flow step Step 1 ⇢ Step 2
Carousel control Next slide ⇢
Large glyph
Arrow comparison ⇠ ← → ⇢
Numeric refs &#x21E2; &#8674; \21E2

🧠 How It Works

1

Hexadecimal Code

&#x21E2; uses the Unicode hexadecimal value 21E2 to display the rightwards dashed arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\21E2 is used in CSS stylesheets in the content property of pseudo-elements like ::after for navigation and flow indicators.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+21E2 is in the Arrows block. Previous: Right Bracket (]). Next: Right Double Arrow.

Use Cases

The Right Dashed Arrow (⇢) is commonly used in:

🧭 Navigation

Indicate “next” or “forward” in menus, breadcrumbs, and navigation UI.

📊 Flow diagrams

Show direction or flow in diagrams, flowcharts, and process steps.

🎨 Web design

Add visual interest and directional cues with a distinctive dashed arrow style.

📚 Tutorials

Point to the next step or “continue” in guides and wizards.

🖼 Carousels

Next slide or next item controls in carousels and galleries.

🎯 UI elements

Buttons, links, and interactive elements that need unique directional indicators.

💡 Best Practices

Do

  • Use &#8674; or &#x21E2; in HTML—no named entity exists
  • Pair ⇢ with text (“Next”, “Continue”) or aria-label for accessibility
  • Use fonts that support the Arrows block (U+21E2)
  • Set <meta charset="utf-8">
  • Keep one numeric style (hex or decimal) per project
  • Distinguish ⇢ from → when dashed vs solid arrow matters

Don’t

  • Expect a named HTML entity for U+21E2
  • Use padded Unicode like U+021E2—the correct value is U+21E2
  • Use padded CSS like \021E2—prefer \21E2
  • Use CSS \21E2 inside HTML text nodes
  • Confuse ⇢ with → (simple right arrow / &rarr;)
  • Confuse ⇢ with ⇠ (leftwards dashed arrow)

Key Takeaways

1

Two HTML numeric references plus CSS for U+21E2

&#x21E2; &#8674;
2

For CSS, use \21E2 in the content property

3

Unicode U+21E2 — RIGHTWARDS DASHED ARROW (⇢)

4

Arrows block (U+2190–U+21FF) — no named entity

❓ Frequently Asked Questions

Use &#x21E2; (hex), &#8674; (decimal), or \21E2 in CSS content. There is no named entity. All three methods render ⇢ correctly.
U+21E2 (RIGHTWARDS DASHED ARROW). Arrows block (U+2190–U+21FF). Hex 21E2, decimal 8674. A right-pointing dashed arrow.
In navigation UI, flow diagrams and process charts, next or forward links, directional indicators, web design, and any content that needs a unique dashed arrow to indicate direction or movement.
HTML references (&#8674; or &#x21E2;) go in markup. The CSS escape \21E2 is used in stylesheets, typically on ::before or ::after. Both produce ⇢.
Named entities cover common characters; arrow symbols like U+21E2 in the Arrows block use numeric hex (&#x21E2;) or decimal (&#8674;) codes. That is standard for such symbols in HTML.

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