HTML Entity for Left Arrow Stroke (↚)

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

What You'll Learn

How to display the Left Arrow Stroke (↚) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+219A (LEFTWARDS ARROW WITH STROKE) in the Arrows block (U+2190–U+21FF)—a leftwards arrow with stroke, commonly used for negation or “not-left” in logic, UI, and technical content.

Render it with ↚ (named), ↚, ↚, or CSS \219A. Related: U+219B (↛, right arrow stroke / ↛), U+2190 (←, simple left arrow / ←).

⚡ Quick Reference — Left Arrow Stroke

Unicode U+219A

Arrows block

Hex Code ↚

Hexadecimal reference

HTML Code ↚

Decimal reference

Named Entity ↚

Most readable option

Reference Table
Name           Value
────────────   ──────────
Unicode        U+219A
Hex code       ↚
HTML code      ↚
Named entity   ↚
CSS code       \219A
Meaning        Leftwards arrow with stroke (not-left)
Related        U+219B = right arrow stroke (↛)
               U+2190 = left arrow (←)
1

Complete HTML Example

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

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\219A";
  }
 </style>
</head>
<body>
<p>Symbol using Hexadecimal: &#x219A;</p>
<p>Symbol using HTML Code: &#8602;</p>
<p>Symbol using HTML Entity: &nlarr;</p>
<p id="point">Symbol using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Left Arrow Stroke (↚) 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 Arrow Stroke (↚) in negation and UI contexts:

Not-left / negation ↚ Not left
Disabled back ↚ Back (disabled)
Logic notation P ↚ Q
Large glyph
Arrow comparison ↚ ↛ ← ⇺
Entity refs &nlarr; &#x219A; &#8602; \219A

🧠 How It Works

1

Named HTML Entity

&nlarr; is the named entity for the Left Arrow Stroke (leftwards arrow with stroke). It is easy to read in logic and negation markup.

HTML markup
2

Hexadecimal Code

&#x219A; uses the Unicode hexadecimal value 219A. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\219A 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+219A is in the Arrows block. Next: Left Arrow Tail.

Use Cases

The Left Arrow Stroke (↚) is commonly used in:

🚫 Negation

Indicate “not left,” “no back,” or negation in logic, UI, or documentation.

📄 Documentation

Document flow, logic, or specification notation that uses this arrow.

📊 Diagrams

Indicate forbidden or negated direction in process and state diagrams.

⌨ Shortcuts

Show shortcut hints for “no back” or disabled left action in help and UI.

🧭 Navigation

Disabled or inactive back/left control when action is not available.

🔢 Logic

Represent negated leftward relation or “not implies” in logic notation.

💡 Best Practices

Do

  • Prefer &nlarr; in HTML for readability
  • Pair ↚ with text (e.g., “No back”) or aria-label for accessibility
  • Use fonts that support the Arrows block (U+219A)
  • Set <meta charset="utf-8">
  • Keep one encoding style per project for consistency
  • Distinguish ↚ from ← when negation meaning matters

Don’t

  • Confuse &nlarr; (U+219A) with simple &larr; (U+2190)
  • Use CSS \219A inside HTML text nodes
  • Confuse ↚ with ↛ (right arrow stroke)
  • Rely on the symbol alone without context in critical UI
  • Mix named and numeric entities inconsistently in the same component

Key Takeaways

1

Four ways to render U+219A in web content

&nlarr; &#x219A; &#8602;
2

For CSS, use \219A in the content property

3

Unicode U+219A — LEFTWARDS ARROW WITH STROKE

4

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

❓ Frequently Asked Questions

Use &nlarr; (named), &#x219A; (hex), &#8602; (decimal), or \219A in CSS content. All four methods render ↚ correctly.
U+219A (LEFTWARDS ARROW WITH STROKE). Arrows block (U+2190–U+21FF). Hex 219A, decimal 8602. Often used for negation or not-left.
For negation or not-left in logic and UI, technical documentation, diagrams, keyboard shortcuts, and any content that indicates left-arrow-with-stroke or not-left.
Named and numeric HTML references (&nlarr;, &#8602;, &#x219A;) go in markup. The CSS escape \219A is used in stylesheets, typically on ::before or ::after. Both produce ↚.
Yes. &nlarr; is the named HTML entity for U+219A. You can also use &#8602; (decimal), &#x219A; (hex), or \219A 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