HTML Entity for Left Arrow (←)

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

What You'll Learn

How to display the Left Arrow (←) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+2190 (LEFTWARDS ARROW) in the Arrows block (U+2190–U+21FF)—essential for navigation, back buttons, pagination, sliders, and any UI that indicates left or previous direction.

Render it with ← (named), ←, ←, or CSS \2190. Unlike many symbols, the Left Arrow has a readable named entity. Related: U+2192 (→, right arrow), U+2194 (↔, left-right arrow).

⚡ Quick Reference — Left Arrow

Unicode U+2190

Arrows block

Hex Code ←

Hexadecimal reference

HTML Code ←

Decimal reference

Named Entity ←

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2190
Hex code       ←
HTML code      ←
Named entity   ←
CSS code       \2190
Meaning        Leftwards arrow
Related        U+2192 = right arrow (→)
               U+2194 = left-right arrow (↔)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2190";
  }
 </style>
</head>
<body>
<p>Left Arrow using Hexadecimal: &#x2190;</p>
<p>Left Arrow using HTML Code: &#8592;</p>
<p>Left Arrow using HTML Entity: &larr;</p>
<p id="point">Left Arrow using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Left Arrow (←) is universally supported in all modern browsers—it is one of the most common arrow symbols on the web:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Left Arrow (←) rendered in common UI contexts:

Back button ← Back
Pagination ← Previous  |  Next →
Large glyph
Breadcrumb Home ← Products ← Details
Numeric refs &larr; &#x2190; &#8592; \2190

🧠 How It Works

1

Named HTML Entity

&larr; is the standard named entity for the Left Arrow. It is easy to read and remember in source HTML.

HTML markup
2

Hexadecimal Code

&#x2190; uses the Unicode hexadecimal value 2190. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

&#8592; uses the decimal Unicode value 8592 for the same leftwards arrow character.

HTML markup
4

CSS Entity

\2190 is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce the Left Arrow: . Unicode U+2190 sits in the Arrows block. Next: Left Arrow Above Short Right Arrow.

Use Cases

The Left Arrow (←) is commonly used in:

🧭 Navigation

Back buttons, breadcrumbs, and app headers indicating previous or left direction.

📄 Pagination

Previous page controls in galleries, lists, and multi-step forms.

🖼️ Carousels

Previous slide or panel in image sliders and tabbed content.

⌨️ Shortcuts

Keyboard labels (e.g. ← Back) and shortcut hints in help text.

📊 Diagrams

Flow direction in flowcharts, process flows, and technical documentation.

📱 Wizards

Previous step or go-back in multi-step wizards and onboarding flows.

💡 Best Practices

Do

  • Prefer &larr; in HTML for readable source markup
  • Pair the arrow with text (e.g. “← Back”) or use aria-label
  • Keep one entity style consistent across your project
  • Set <meta charset="utf-8">
  • Use CSS \2190 for decorative arrows in pseudo-elements
  • Test arrow rendering across browsers and fonts

Don’t

  • Use the arrow alone without context for interactive controls
  • Mix entity styles randomly in one file
  • Use CSS \2190 inside HTML text nodes
  • Confuse ← (left) with → (right) or ↔ (both)
  • Rely on the arrow as the only accessibility cue

Key Takeaways

1

Four ways to render U+2190 in HTML and CSS

&larr; &#x2190; &#8592;
2

For CSS, use \2190 in the content property

3

Unicode U+2190 — LEFTWARDS ARROW

4

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

❓ Frequently Asked Questions

Use &larr; (named), &#x2190; (hex), &#8592; (decimal), or \2190 in CSS content. All four methods render ←.
U+2190 (LEFTWARDS ARROW). Arrows block (U+2190–U+21FF). Hex 2190, decimal 8592. Widely used in navigation, UI, and directional interfaces.
In navigation menus and back buttons, pagination controls, sliders and carousels, keyboard shortcut labels, flowcharts and diagrams, form wizards, and any UI indicating left or previous direction.
Named and numeric HTML references (&larr;, &#8592;, &#x2190;) go in markup. The CSS escape \2190 is used in stylesheets, typically on ::before or ::after. Both render ←.
Yes. &larr; is the named HTML entity for U+2190. You can also use &#8592; (decimal) or &#x2190; (hex) and \2190 in CSS—all equivalent in modern browsers.

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