HTML Entity for Long Left Arrow (⟵)

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

What You'll Learn

How to display the Long Left Arrow (⟵) symbol in HTML using hexadecimal, decimal, named entity, and CSS escape methods. This character is U+27F5 (LONG LEFTWARDS ARROW) in the Supplemental Arrows-C block.

Render it with ⟵, ⟵, ⟵, or CSS escape \27F5. It is used for direction, navigation, flow in diagrams, and mathematical notation. For the standard short arrow, see Left Arrow (←, ←).

⚡ Quick Reference — Long Left Arrow

Unicode U+27F5

Supplemental Arrows-C

Hex Code ⟵

Hexadecimal reference

HTML Code ⟵

Decimal reference

Named Entity ⟵

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+27F5
Hex code       ⟵
HTML code      ⟵
Named entity   ⟵
CSS code       \27F5
Meaning        Long leftwards arrow
Related        U+2190 = ← (←)
Block          Supplemental Arrows-C
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\27F5";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x27F5;</p>
<p>Symbol (decimal): &#10229;</p>
<p>Symbol (named): &xlarr;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Long Left Arrow (⟵) is supported in modern browsers when the font includes Supplemental Arrows glyphs:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the Long Left Arrow (⟵) in navigation and diagram contexts:

Large glyph
Navigation⟵ Back to home
FlowStep 2 ⟵ Step 1
Compare⟵ (long) vs ← (short)
Numeric refs&#x27F5; &#10229; &xlarr; \27F5

🧠 How It Works

1

Hexadecimal Code

&#x27F5; uses the Unicode hexadecimal value 27F5 to display the arrow.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

Named Entity

&xlarr; is the semantic named entity for ⟵—readable in source HTML and part of the HTML5 character set.

HTML markup
4

CSS Entity

\27F5 is used in CSS stylesheets, particularly in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All four methods produce the glyph: . Unicode U+27F5 is in Supplemental Arrows-C. Previous: Logical OR.

Use Cases

The Long Left Arrow (⟵) is commonly used in:

👈 Navigation

Back links, breadcrumbs, and directional UI labels.

📊 Flowcharts

Process diagrams showing flow from right to left.

📐 Math notation

Limits, mappings, and long-arrow relations in equations.

📄 Technical docs

Step-by-step guides and state transition descriptions.

🌐 Web UI

Pagination, carousel controls, and direction indicators.

📝 Presentations

Slides and notes that need a clear left-pointing arrow.

💡 Best Practices

Do

  • Use &xlarr; for readable source markup
  • Pair arrows with text labels for accessibility (e.g. “Back”)
  • Choose ⟵ when you need a longer stroke than ←
  • Use fonts that support arrow symbols for consistent rendering
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse &xlarr; (⟵) with &larr; (←) when precision matters
  • Put CSS escape \27F5 in HTML text nodes
  • Rely on the arrow glyph alone for screen reader users
  • Assume every font renders long arrows identically—test on mobile
  • Use arrows as the only navigation affordance without focus styles

Key Takeaways

1

Four HTML/CSS references all render ⟵

&#x27F5; &#10229; &xlarr;
2

For CSS stylesheets, use the escape in the content property

\27F5
3

Unicode U+27F5 — LONG LEFTWARDS ARROW

4

Prefer &xlarr; for readability; short arrow is &larr;

5

Previous: Logical OR   Next: Long Left Arrow Bar

❓ Frequently Asked Questions

Use &#x27F5; (hex), &#10229; (decimal), &xlarr; (named), or \27F5 in CSS content. All produce ⟵.
U+27F5 (LONG LEFTWARDS ARROW). Supplemental Arrows-C block. Hex 27F5, decimal 10229. Named entity: &xlarr;.
For navigation, flowcharts, mathematical notation, technical documentation, and UI direction indicators where a longer left-pointing arrow is needed.
&xlarr; is the named HTML entity for ⟵. It is part of the HTML5 named character set and the most readable option in source markup.
← (&larr;) is the standard leftwards arrow. ⟵ (&xlarr;) is the long leftwards arrow with a longer horizontal stroke.

Explore More HTML Entities!

Discover 1500+ HTML character references — arrows, symbols, 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