HTML Entity for Left Open Headed Arrow (⇽)

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

What You'll Learn

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

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

⚡ Quick Reference — Left Open Headed Arrow

Unicode U+21FD

Arrows block

Hex Code ⇽

Hexadecimal reference

HTML Code ⇽

Decimal reference

Named Entity ⇽

Most readable option

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

Complete HTML Example

A simple example showing the Left 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: "\21FD";
  }
 </style>
</head>
<body>
<p>Symbol using Hexadecimal: &#x21FD;</p>
<p>Symbol using HTML Code: &#8701;</p>
<p>Symbol using HTML Entity: &loarr;</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

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

Navigation ⇽ Back to previous page
Flow diagram Input ⇽ Process ⇽ Output
UI label ⇽ Return
Large glyph
Arrow comparison ⇽ ← ⇾ ⇋
Entity refs &loarr; &#x21FD; &#8701; \21FD

🧠 How It Works

1

Named HTML Entity

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

HTML markup
2

Hexadecimal Code

&#x21FD; uses the Unicode hexadecimal value 21FD. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

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

Use Cases

The Left 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 left-pointing open-headed arrows in technical writing.

📚 Technical docs

Illustrate directional symbols in guides and reference material.

🎯 UI design

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

🗃 Entity reference

Document and teach HTML entity usage for Arrows block symbols.

💡 Best Practices

Do

  • Prefer &loarr; in HTML for readability
  • Use fonts that support the Arrows block (U+21FD)
  • 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 &loarr; (U+21FD, open-headed left) with &larr; (U+2190, standard left arrow)
  • Confuse &loarr; (U+21FD) with &roarr; (U+21FE, open-headed right)
  • Use CSS \21FD 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+21FD in HTML and CSS

&loarr; &#x21FD; &#8701;
2

For CSS, use \21FD in the content property

3

Unicode U+21FD — LEFTWARDS OPEN-HEADED ARROW

4

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

❓ Frequently Asked Questions

Use &loarr; (named), &#x21FD; (hex), &#8701; (decimal), or \21FD in CSS content. All four methods render ⇽ correctly.
U+21FD (LEFTWARDS OPEN-HEADED ARROW). Arrows block (U+2190–U+21FF). Hex 21FD, decimal 8701. A left-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 left-pointing open-headed arrow.
Named and numeric HTML references (&loarr;, &#8701;, &#x21FD;) go in markup. The CSS escape \21FD is used in stylesheets, typically on ::before or ::after. Both produce ⇽.
Yes. &loarr; is the named HTML entity for U+21FD. You can also use &#8701; (decimal) or &#x21FD; (hex) and \21FD 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