HTML Entity for Right Open Headed Arrow (⇾)

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

What You'll Learn

How to display the Right Open Headed Arrow (⇾) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+21FE (RIGHTWARDS OPEN-HEADED ARROW) in the Arrows block (U+2190–U+21FF)—a right-pointing arrow with an open (unfilled) head, used in navigation, diagrams, and directional notation.

Render it with ⇾ (named), ⇾, ⇾, or CSS \21FE. Related: U+2192 (→, simple right arrow / →), U+21FD (⇽, left open headed arrow / ⇽).

⚡ Quick Reference — Right Open Headed Arrow

Unicode U+21FE

Arrows block

Hex Code ⇾

Hexadecimal reference

HTML Code ⇾

Decimal reference

Named Entity ⇾

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21FE
Hex code       ⇾
HTML code      ⇾
Named entity   ⇾
CSS code       \21FE
Meaning        Rightwards open-headed arrow
Related        U+2192 = right arrow (→)
               U+21FD = left open headed arrow (⇽)
1

Complete HTML Example

A simple example showing the Right Open 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: "\21FE";
  }
 </style>
</head>
<body>
<p>Symbol using Hexadecimal: &#x21FE;</p>
<p>Symbol using HTML Code: &#8702;</p>
<p>Symbol using HTML Entity: &roarr;</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Right Open Headed 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 Open Headed Arrow (⇾) in navigation and diagram contexts:

Navigation Next page ⇾
Flow diagram Input ⇾ Process ⇾ Output
UI label Continue ⇾
Large glyph
Arrow comparison ⇾ → ⇽ ⇌
Entity refs &roarr; &#x21FE; &#8702; \21FE

🧠 How It Works

1

Named HTML Entity

&roarr; is the named entity for the Right Open Headed Arrow (rightwards open-headed arrow). Easy to read in navigation and diagram markup.

HTML markup
2

Hexadecimal Code

&#x21FE; uses the Unicode hexadecimal value 21FE. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#8702; uses the decimal Unicode value 8702 for the same symbol.

HTML markup
4

CSS Entity

\21FE 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+21FE is in the Arrows block. Previous: Right Normal Factor Semidirect Product.

Use Cases

The Right Open Headed Arrow (⇾) is commonly used in:

🚀 Navigation

Back links, breadcrumbs, and return controls in web interfaces.

📊 Flowcharts

Show leftward flow or reverse direction in process diagrams.

📐 Math notation

Specialized right-pointing open-headed arrows in technical writing.

📚 Technical docs

Illustrate directional symbols in guides and reference material.

🎯 UI design

Decorative or functional open-headed right arrows in buttons and labels.

🗃 Entity reference

Document and teach HTML entity usage for Arrows block symbols.

💡 Best Practices

Do

  • Prefer &roarr; in HTML for readability
  • Use fonts that support the Arrows block (U+21FE)
  • Set <meta charset="utf-8">
  • Pair ⇾ with context (navigation, diagrams) so meaning is clear
  • Keep one encoding style per project for consistency
  • Distinguish ⇾ from → when open-headed vs standard arrow matters

Don’t

  • Confuse &roarr; (U+21FE, open-headed right) with &rarr; (U+2192, standard right arrow)
  • Confuse &roarr; (U+21FE) with &loarr; (U+21FD, open-headed left)
  • Use CSS \21FE inside HTML text nodes
  • Assume all fonts render arrow glyphs identically
  • Mix named and numeric entities inconsistently in the same component

Key Takeaways

1

Four ways to render U+21FE in HTML and CSS

&roarr; &#x21FE; &#8702;
2

For CSS, use \21FE in the content property

3

Unicode U+21FE — RIGHTWARDS OPEN-HEADED ARROW

4

Arrows block (U+2190–U+21FF) — named entity &roarr;

❓ Frequently Asked Questions

Use &roarr; (named), &#x21FE; (hex), &#8702; (decimal), or \21FE in CSS content. All four methods render ⇾ correctly.
U+21FE (RIGHTWARDS OPEN-HEADED ARROW). Arrows block (U+2190–U+21FF). Hex 21FE, decimal 8702. A right-pointing arrow with an open (unfilled) head.
In navigation and UI elements, flowcharts and diagrams, mathematical notation, technical documentation, and any design that needs a right-pointing open-headed arrow.
Named and numeric HTML references (&roarr;, &#8702;, &#x21FE;) go in markup. The CSS escape \21FE is used in stylesheets, typically on ::before or ::after. Both produce ⇾.
Yes. &roarr; is the named HTML entity for U+21FE. You can also use &#8702; (decimal) or &#x21FE; (hex) and \21FE 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