HTML Entity for Right Arrow Stroke (↛)

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

What You'll Learn

How to display the Right Arrow Stroke (↛) in HTML using the named entity, hexadecimal, decimal, and CSS escape methods. This symbol is U+219B (RIGHTWARDS ARROW WITH STROKE) in the Arrows block (U+2190–U+21FF)—a rightward arrow with a stroke through it, used for logical negation (does not imply), navigation, UI design, and mathematical notation.

Render it with ↛ (named), ↛, ↛, or CSS \219B. Related: U+219A (↚, left arrow stroke / ↚), U+2192 (→, plain right arrow). Do not confuse ↛ with → or maps-to ↦.

⚡ Quick Reference — Right Arrow Stroke

Unicode U+219B

Arrows (U+2190–U+21FF)

Hex Code ↛

Hexadecimal reference

HTML Code ↛

Decimal reference

Named Entity ↛

Standard HTML entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+219B
Hex code       ↛
HTML code      ↛
Named entity   ↛
CSS code       \219B
Meaning        Rightwards arrow with stroke (does not imply)
Related        U+219A = left arrow stroke (↚, ↚)
               U+2192 = right arrow (→, →)
Block          Arrows (U+2190–U+21FF)
1

Complete HTML Example

A simple example showing ↛ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\219B";
  }
 </style>
</head>
<body>
<p>Hex: &#x219B;</p>
<p>Decimal: &#8603;</p>
<p>Named: &nrarr;</p>
<p id="point">CSS: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+219B is widely supported in all modern browsers—it is part of the standard Arrows block:

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

👀 Live Preview

See the Right Arrow Stroke (↛) in common contexts:

Logic (does not imply) PQ
Blocked / disabled Next ↛ (unavailable)
Large glyph
Arrow comparison ↚ ↛ →
Entity refs &nrarr; &#x219B; &#8603; \219B

🧠 How It Works

1

Named HTML Entity

&nrarr; is the named entity for U+219B (rightwards arrow with stroke). It is the most readable option in HTML source.

HTML markup
2

Hexadecimal Code

&#x219B; uses the Unicode hexadecimal value 219B.

HTML markup
3

Decimal HTML Code

&#8603; uses the decimal Unicode value 8603 for the same character.

HTML markup
4

CSS Entity

\219B is used in CSS stylesheets in the content property of pseudo-elements.

CSS stylesheet
=

Same visual result

All four methods produce . Unicode U+219B in the Arrows block. Previous: Right Arrow Small Circle (⇴). Next: Right Arrow Tail (↣).

Use Cases

The Right Arrow Stroke (↛) is commonly used in:

🔢 Logic & math

Does-not-imply notation and logical negation in formulas and proofs.

🧭 Navigation

Buttons and UI indicating blocked, disabled, or unavailable forward actions.

🎨 UI design

Directional indicators with negation in dashboards and interfaces.

📝 Technical docs

Documentation showing relationships that do not hold or are excluded.

🚀 Web development

Apps and sites needing a distinct negated right-arrow symbol.

♿ Accessibility

Pair ↛ with plain language (e.g. “does not imply” or “blocked”) for screen readers.

💡 Best Practices

Do

  • Prefer &nrarr; in HTML for readable source markup
  • Use ↛ for does-not-imply and negated-direction notation
  • Set <meta charset="utf-8">
  • Link to Left Arrow Stroke for the paired ↚ symbol
  • Keep one entity style consistent across your project
  • Use CSS \219B for decorative negated arrows in pseudo-elements

Don’t

  • Confuse ↛ (U+219B) with ↚ (U+219A) or plain →
  • Use padded Unicode notation like U+0219B—the correct value is U+219B
  • Use CSS escape \219B in HTML text nodes
  • Substitute ASCII -> when the stroked arrow ↛ is intended
  • Confuse ↛ with implication arrow ⇒ (&Rightarrow;)

Key Takeaways

1

Four ways to render U+219B in HTML and CSS

&nrarr; &#x219B; &#8603;
2

For CSS, use \219B in the content property

3

Unicode U+219B — RIGHTWARDS ARROW WITH STROKE (↛)

4

Paired with left stroke ↚ (&nlarr;); distinct from → and ⇒

❓ Frequently Asked Questions

Use &nrarr; (named), &#x219B; (hex), &#8603; (decimal), or \219B in CSS content. All four render ↛.
U+219B (RIGHTWARDS ARROW WITH STROKE). Arrows block (U+2190–U+21FF). Hex 219B, decimal 8603. Often read as does-not-imply in logic.
For navigation buttons, UI design, mathematical notation, logical negation (does not imply), and content indicating direction with negation or blocking.
&nrarr; is more readable in source markup; &#8603; and &#x219B; are numeric alternatives. All render ↛ in modern browsers.
Named and numeric HTML references (&nrarr;, &#8603;, &#x219B;) go in markup. The CSS escape \219B is used in stylesheets, typically on ::before or ::after. Both render ↛.

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