HTML Entity for Left Dashed Arrow (⇠)

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

What You'll Learn

How to display the Left Dashed Arrow (⇠) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+21E0 (LEFTWARDS DASHED ARROW) in the Arrows block (U+2190–U+21FF)—a left-pointing dashed arrow used in navigation, flow diagrams, back links, and directional indicators.

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

⚡ Quick Reference — Left Dashed Arrow

Unicode U+21E0

Arrows block

Hex Code ⇠

Hexadecimal reference

HTML Code ⇠

Decimal reference

Named Entity

Use numeric codes only

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

Complete HTML Example

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

🌐 Browser Support

The Left 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 Left Dashed Arrow (⇠) in navigation and diagram contexts:

Back link ⇠ Previous
Flow step Step 2 ⇠ Step 1
Carousel control ⇠ Prev slide
Large glyph
Arrow comparison ⇠ ← ⇤ ⇢
Numeric refs &#x21E0; &#8672; \21E0

🧠 How It Works

1

Hexadecimal Code

&#x21E0; uses the Unicode hexadecimal value 21E0 to display the leftwards dashed arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

Use Cases

The Left Dashed Arrow (⇠) is commonly used in:

🧭 Navigation

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

📊 Flow diagrams

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

📚 Tutorials

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

🎯 Direction

Decorative or functional left direction in buttons, labels, and icons.

⌨ Shortcuts

Document “previous” or “left” in shortcut hints and key labels.

🖼 Carousels

Previous slide or previous item controls in carousels and galleries.

💡 Best Practices

Do

  • Use &#8672; or &#x21E0; in HTML—no named entity exists
  • Pair ⇠ with text (“Previous”, “Back”) or aria-label for accessibility
  • Use fonts that support the Arrows block (U+21E0)
  • 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+21E0
  • Use CSS \21E0 inside HTML text nodes
  • Confuse ⇠ with ← (simple left arrow / &larr;)
  • Confuse ⇠ with ⇢ (rightwards dashed arrow)
  • Rely on the symbol alone without context in critical navigation UI

Key Takeaways

1

Two HTML numeric references plus CSS for U+21E0

&#x21E0; &#8672;
2

For CSS, use \21E0 in the content property

3

Unicode U+21E0 — LEFTWARDS DASHED ARROW

4

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

❓ Frequently Asked Questions

Use &#x21E0; (hex), &#8672; (decimal), or \21E0 in CSS content. There is no named entity. All three methods render ⇠ correctly.
U+21E0 (LEFTWARDS DASHED ARROW). Arrows block (U+2190–U+21FF). Hex 21E0, decimal 8672. A left-pointing dashed arrow.
In navigation UI, flow diagrams and process charts, back or previous links, directional indicators, tutorials, and any design that needs a left-pointing dashed arrow.
HTML references (&#8672; or &#x21E0;) go in markup. The CSS escape \21E0 is used in stylesheets, typically on ::before or ::after. Both produce ⇠.
Named entities cover common characters; arrow symbols like U+21E0 in the Arrows block use numeric hex (&#x21E0;) or decimal (&#8672;) 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