HTML Entity for Right White Arrow (⇨)

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

What You'll Learn

How to display the Right White Arrow (⇨) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+21E8 (RIGHTWARDS WHITE ARROW) in the Arrows block (U+2190–U+21FF)—a hollow or outline-style arrow pointing right, used for navigation, UI components, flowcharts, and directional emphasis.

Use ⇨, ⇨, or CSS \21E8. There is no named HTML entity. Do not confuse ⇨ with U+2192 (→, filled right arrow / →) or U+219D (↝, wave arrow / ↝).

⚡ Quick Reference — Right White Arrow

Unicode U+21E8

Arrows block

Hex Code ⇨

Hexadecimal reference

HTML Code ⇨

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21E8
Hex code       ⇨
HTML code      ⇨
Named entity   (none)
CSS code       \21E8
Meaning        Hollow / white arrow pointing right
Related        U+2192 = rightwards arrow (→ / →)
               U+219D = rightwards wave arrow (↝ / ↝)
               U+21E9 = downwards white arrow (⇩)
1

Complete HTML Example

A simple example showing the Right White Arrow (⇨) using hexadecimal code, decimal HTML code, and a CSS content escape:

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

🌐 Browser Support

The Right White Arrow (⇨) is universally supported in all 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 White Arrow (⇨) rendered live in different contexts:

Inline navigation Next ⇨ Continue reading.
Large glyph
UI button label Proceed ⇨
Arrow comparison → ⇨ ↝
Numeric refs &#x21E8; &#8680; \21E8
Pagination Page 1 ⇨ Page 2 ⇨ Page 3

🧠 How It Works

1

Hexadecimal Code

&#x21E8; uses the Unicode hexadecimal value 21E8 for the right white arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+21E8 is in the Arrows block. There is no named HTML entity. Previous: Right Wave Arrow (U+219D).

Use Cases

The Right White Arrow (⇨) is commonly used in:

🔍 Navigation Elements

Indicate forward or rightward movement in menus and pagination.

➡ Directional Indicators

Show rightward direction in guides and wayfinding systems.

📱 UI Components

Use in buttons, links, and controls that need a hollow arrow cue.

📊 Flowcharts

Indicate directional flow between steps and decision nodes.

📄 Technical Diagrams

Include in architecture and process diagrams with arrow notation.

🖥 User Interfaces

Add to dashboards and panels for lightweight directional navigation.

💡 Best Practices

Do

  • Use &#x21E8; or &#8680; for HTML markup
  • Distinguish ⇨ from → (filled) and ↝ (wave)
  • Add aria-label or surrounding text for accessibility
  • Verify your font supports the Arrows block (U+21E8)
  • Keep one entity style per project for consistency

Don’t

  • Confuse ⇨ with → (filled right arrow) or ↝ (wave arrow)
  • Assume a named HTML entity exists—there is none for U+21E8
  • Use CSS \21E8 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 white arrow glyphs identically

Key Takeaways

1

Two HTML references plus CSS all render ⇨

&#x21E8; &#8680;
2

For CSS, use \21E8 in the content property

3

Unicode U+21E8 — RIGHTWARDS WHITE ARROW (Arrows block)

4

No named HTML entity—use numeric hex or decimal codes

❓ Frequently Asked Questions

Use &#x21E8; (hex), &#8680; (decimal), or \21E8 in CSS content. There is no named HTML entity. All three methods render ⇨ correctly.
U+21E8 (RIGHTWARDS WHITE ARROW). Arrows block (U+2190–U+21FF). Hex 21E8, decimal 8680.
In navigation elements, directional indicators, UI components, flowcharts, diagrams, and user interfaces where a hollow or white-style right arrow is needed.
HTML references (&#8680; or &#x21E8;) go in markup. The CSS escape \21E8 is used in stylesheets, typically on ::before or ::after. Both produce ⇨.
Named HTML entities cover a subset of common characters. Arrows symbols like U+21E8 use numeric hex or decimal codes or CSS escapes, which is standard for specialized arrow 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