HTML Entity for Left Double Arrow (⇐)

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

What You'll Learn

How to display the Left Double Arrow (⇐) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+21D0 (LEFTWARDS DOUBLE ARROW) in the Arrows block (U+2190–U+21FF)—a left-pointing double arrow used in logic (implication), navigation, flow diagrams, and symbolic representations.

Render it with ⇐ (named), ⇐, ⇐, or CSS \21D0. Related: U+21D2 (⇒, right double arrow / ⇒), U+2190 (←, simple left arrow / ←).

⚡ Quick Reference — Left Double Arrow

Unicode U+21D0

Arrows block

Hex Code ⇐

Hexadecimal reference

HTML Code ⇐

Decimal reference

Named Entity ⇐

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21D0
Hex code       ⇐
HTML code      ⇐
Named entity   ⇐
CSS code       \21D0
Meaning        Leftwards double arrow
Related        U+21D2 = right double arrow (⇒)
               U+2190 = left arrow (←)
1

Complete HTML Example

A simple example showing the Left Double Arrow (⇐) using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

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

🌐 Browser Support

The Left Double 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 Double Arrow (⇐) in logic and navigation contexts:

Logic implication B ⇐ A
Back link ⇐ Previous
Flow step Step 2 ⇐ Step 1
Large glyph
Arrow comparison ⇐ ⇒ ← ⇠
Entity refs &lArr; &#x21D0; &#8656; \21D0

🧠 How It Works

1

Named HTML Entity

&lArr; is the named entity for the Left Double Arrow (leftwards double arrow). It is easy to read in logic and navigation markup.

HTML markup
2

Hexadecimal Code

&#x21D0; uses the Unicode hexadecimal value 21D0. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\21D0 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+21D0 is in the Arrows block. Previous: Left Dashed Arrow.

Use Cases

The Left Double Arrow (⇐) is commonly used in:

📐 Logic

Represent logical implication or equivalence in math and logic notation.

🧭 Navigation

Indicate “back” or “previous” in menus, breadcrumbs, and navigation UI.

📊 Flow diagrams

Show direction or implication in flowcharts and process steps.

📚 Documentation

Point to previous step or “go back” in guides and technical docs.

🎯 Direction

Decorative or functional left double arrow in buttons, labels, and icons.

🖼 Carousels

Previous slide or previous item controls in carousels and galleries.

💡 Best Practices

Do

  • Prefer &lArr; in HTML for readability
  • Pair ⇐ with text (“Previous”, “Back”) or aria-label for accessibility
  • Use fonts that support the Arrows block (U+21D0)
  • Set <meta charset="utf-8">
  • Keep one encoding style per project for consistency
  • Distinguish ⇐ from ← when double vs single arrow matters

Don’t

  • Confuse &lArr; (U+21D0) with &larr; (U+2190)
  • Confuse &lArr; with &rArr; (U+21D2, right double arrow)
  • Use CSS \21D0 inside HTML text nodes
  • Assume ⇐ always means logical implication without context
  • Mix named and numeric entities inconsistently in the same component

Key Takeaways

1

Four ways to render U+21D0 in web content

&lArr; &#x21D0; &#8656;
2

For CSS, use \21D0 in the content property

3

Unicode U+21D0 — LEFTWARDS DOUBLE ARROW

4

Arrows block (U+2190–U+21FF)

❓ Frequently Asked Questions

Use &lArr; (named), &#x21D0; (hex), &#8656; (decimal), or \21D0 in CSS content. All four methods render ⇐ correctly.
U+21D0 (LEFTWARDS DOUBLE ARROW). Arrows block (U+2190–U+21FF). Hex 21D0, decimal 8656. Used in logic, implication, and navigation.
In logic and implication notation, navigation and back links, mathematical or symbolic content, flow diagrams, and any design that needs a left-pointing double arrow.
Named and numeric HTML references (&lArr;, &#8656;, &#x21D0;) go in markup. The CSS escape \21D0 is used in stylesheets, typically on ::before or ::after. Both produce ⇐.
Yes. &lArr; is the named HTML entity for U+21D0. You can also use &#8656; (decimal), &#x21D0; (hex), or \21D0 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