HTML Entity for Left Arrow Through X (⥆)

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

What You'll Learn

How to display the Left Arrow Through X (⥆) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+2946 (LEFTWARDS ARROW THROUGH X) in the Supplemental Arrows-B block (U+2900–U+297F)—a rightward arrow with an X through it, used for web design, UI elements, cancel actions, and blocking or rejection indicators.

Render it with ⥆, ⥆, or CSS \2946. There is no named HTML entity. Related: U+2946 (⥆, left arrow through X), U+2914 (⤔, tail vertical stroke). Do not confuse ⥆ with plain → or cancel symbols like × alone.

⚡ Quick Reference — Left Arrow Through X

Unicode U+2946

Supplemental Arrows-B (U+2900–U+297F)

Hex Code ⥆

Hexadecimal reference

HTML Code ⥆

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2946
Hex code       ⥆
HTML code      ⥆
Named entity   (none)
CSS code       \2946
Meaning        Rightwards arrow through X
Related        U+2946 = left arrow through X (⥆)
               U+2914 = tail vertical stroke (⤔)
               U+21E5 = right arrow to bar (⇥)
Block          Supplemental Arrows-B (U+2900–U+297F)
1

Complete HTML Example

A simple example showing ⥆ 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: "\2946";
  }
 </style>
</head>
<body>
<p>Hex: &#x2946;</p>
<p>Decimal: &#10566;</p>
<p id="point">CSS: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2946 renders in modern browsers when the font includes Supplemental Arrows-B glyphs:

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

👀 Live Preview

See the Left Arrow Through X (⥆) in common contexts:

Cancel action Dismiss ⥆
Block / reject Blocked ⥆
Large glyph
Arrow comparison ⥆ ⥆ →
Numeric refs &#x2946; &#10566; \2946

🧠 How It Works

1

Hexadecimal Code

&#x2946; uses the Unicode hexadecimal value 2946. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2946 in the Supplemental Arrows-B block. No named entity—use numeric codes. Previous: Right Arrow Tail Vertical Stroke (⤔). Next: Right Arrow To Bar (⇥).

Use Cases

The Left Arrow Through X (⥆) is commonly used in:

🎨 Web design

Layouts and interfaces with cancel or block indicators combined with direction.

🛠 User interfaces

Buttons and links that combine navigation with cancel functionality.

❌ Cancel actions

Cancel buttons, delete actions, and dismiss controls with directional cues.

💻 Interactive elements

Forms and UI that need block or reject functionality with direction.

🗺 Navigation with cancel

Menus and flows showing cancel or block actions with direction.

♿ Accessibility

Pair ⥆ with plain language (e.g. “cancel” or “dismiss”) for screen readers.

💡 Best Practices

Do

  • Use &#x2946; or &#10566; in HTML (no named entity exists)
  • Use ⥆ when cancel, block, or reject needs a directional arrow context
  • Set <meta charset="utf-8">
  • Keep hex or decimal style consistent across your project
  • Use CSS \2946 for decorative arrows in pseudo-elements
  • Add accessible labels for cancel or block actions

Don’t

  • Confuse ⥆ (U+2946) with ⥆ (U+2946), ×, or plain →
  • Use padded Unicode notation like U+02946—the correct value is U+2946
  • Use CSS escape \2946 in HTML text nodes
  • Use padded CSS like \02946—prefer \2946
  • Rely on the symbol alone without text for critical cancel actions

Key Takeaways

1

Three ways to render U+2946 in HTML and CSS

&#x2946; &#10566;
2

For CSS, use \2946 in the content property

3

Unicode U+2946 — LEFTWARDS ARROW THROUGH X (⥆)

4

No named HTML entity—use numeric hex or decimal references

❓ Frequently Asked Questions

Use &#x2946; (hex), &#10566; (decimal), or \2946 in CSS content. There is no named HTML entity. All three render ⥆.
U+2946 (LEFTWARDS ARROW THROUGH X). Supplemental Arrows-B block (U+2900–U+297F). Hex 2946, decimal 10566.
For web design, user interfaces, interactive elements, cancel actions, navigation with cancel functionality, and content that needs direction combined with cancellation or blocking.
Numeric HTML references (&#10566;, &#x2946;) go in markup. The CSS escape \2946 is used in stylesheets, typically on ::before or ::after. Both render ⥆.
Named HTML entities cover common characters; specialized arrow symbols in Unicode blocks like Supplemental Arrows-B use numeric hex (&#x2946;) or decimal (&#10566;) references instead.

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