HTML Entity for Left White Arrow (⇦)

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

What You'll Learn

How to display the Left White Arrow (⇦) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+21E6 (LEFTWARDS WHITE ARROW) in the Arrows block (U+2190–U+21FF)—a white or outline-style leftward arrow used in navigation buttons, directional indicators, UI design, and technical documentation.

Render it with ⇦, ⇦, or CSS \21E6. There is no named HTML entity. Pair with U+21E7 (⇧, rightwards white arrow) for bidirectional UI. Do not confuse ⇦ with ← (filled leftwards arrow / ←).

⚡ Quick Reference — Left White Arrow

Unicode U+21E6

Arrows block

Hex Code ⇦

Hexadecimal reference

HTML Code ⇦

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+21E6
Hex code       ⇦
HTML code      ⇦
Named entity   (none)
CSS code       \21E6
Meaning        Leftwards white arrow
Related        U+21E7 = rightwards white arrow (⇧)
               U+2190 = leftwards arrow (← / ←)
1

Complete HTML Example

A simple example showing the Left White 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: "\21E6";
  }
 </style>
</head>
<body>
<p>Arrow (hex): &#x21e6;</p>
<p>Arrow (decimal): &#8678;</p>
<p id="point">Arrow (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Left 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 Left White Arrow (⇦) rendered live in different contexts:

Navigation ⇦ Back
Large glyph
On dark background ⇦ Previous
White arrow pair ⇦ ⇧
Numeric refs &#x21E6; &#8678; \21E6
White vs filled ⇦ ←

🧠 How It Works

1

Hexadecimal Code

&#x21E6; uses the Unicode hexadecimal value 21E6 for the leftwards white arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\21E6 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+21E6 is in the Arrows block. There is no named HTML entity. Previous: Left Wave Arrow.

Use Cases

The Left White Arrow (⇦) is commonly used in:

🚀 Navigation Buttons

Indicate “back” or leftward navigation in menus, breadcrumbs, and UI controls with a clean outline style.

📄 Technical Documentation

Show direction or steps in tutorials and technical writing with a minimal arrow symbol.

🎨 UI Design

Use in minimal or outline-style designs where a white arrow fits the visual language.

📊 Flowcharts & Diagrams

Display flow direction in process diagrams and flowcharts with a clear arrow symbol.

💻 Buttons & Controls

Use in custom buttons, pagination, or sliders for “previous” or “left” actions.

🌐 Web Applications

Use in dashboards, wizards, and multi-step forms for directional cues.

💡 Best Practices

Do

  • Use &#x21E6; or &#8678; for numeric references
  • Pair the symbol with text or aria-label (e.g. “Go back”) for accessibility
  • Ensure sufficient contrast against the background for visibility
  • Verify your font supports the Arrows block (U+21E6)
  • Keep one entity style per project for consistency

Don’t

  • Assume a named HTML entity exists—there is none for U+21E6
  • Confuse ⇦ (white/outline) with ← (filled / &larr;)
  • Use CSS \21E6 inside HTML text nodes
  • Place the white arrow on low-contrast backgrounds without testing
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML references plus CSS all render ⇦

&#x21E6; &#8678;
2

For CSS, use \21E6 in the content property

3

Unicode U+21E6 — LEFTWARDS WHITE ARROW

4

No named HTML entity—use hex or decimal numeric codes

❓ Frequently Asked Questions

Use &#x21E6; (hex), &#8678; (decimal), or \21E6 in CSS content. All three methods render ⇦ correctly. There is no named HTML entity.
U+21E6 (LEFTWARDS WHITE ARROW). Arrows block (U+2190–U+21FF). Hex 21E6, decimal 8678. Used for leftward direction in UI and notation, often for a clean or minimal arrow style.
In navigation buttons and menus, directional indicators, UI design and controls, technical documentation, flowcharts and diagrams, and any content requiring a white or outline-style leftward arrow symbol.
HTML references (&#8678; or &#x21E6;) go in markup. The CSS escape \21E6 is used in stylesheets, typically on ::before or ::after. Both produce ⇦.
Named HTML entities are reserved for commonly used characters. Arrow symbols like U+21E6 use numeric hex or decimal codes or CSS escapes—standard practice for many arrows in the Arrows Unicode block.

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