HTML Entity for Right Arrow Through X (⥇)

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

What You'll Learn

How to display the Right Arrow Through X (⥇) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol is U+2947 (RIGHTWARDS 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 \2947. 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 — Right Arrow Through X

Unicode U+2947

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+2947
Hex code       ⥇
HTML code      ⥇
Named entity   (none)
CSS code       \2947
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: "\2947";
  }
 </style>
</head>
<body>
<p>Hex: &#x2947;</p>
<p>Decimal: &#10567;</p>
<p id="point">CSS: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2947 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 Right Arrow Through X (⥇) in common contexts:

Cancel action Dismiss ⥇
Block / reject Blocked ⥇
Large glyph
Arrow comparison ⥆ ⥇ →
Numeric refs &#x2947; &#10567; \2947

🧠 How It Works

1

Hexadecimal Code

&#x2947; uses the Unicode hexadecimal value 2947. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+2947 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 Right 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 &#x2947; or &#10567; 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 \2947 for decorative arrows in pseudo-elements
  • Add accessible labels for cancel or block actions

Don’t

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

Key Takeaways

1

Three ways to render U+2947 in HTML and CSS

&#x2947; &#10567;
2

For CSS, use \2947 in the content property

3

Unicode U+2947 — RIGHTWARDS ARROW THROUGH X (⥇)

4

No named HTML entity—use numeric hex or decimal references

❓ Frequently Asked Questions

Use &#x2947; (hex), &#10567; (decimal), or \2947 in CSS content. There is no named HTML entity. All three render ⥇.
U+2947 (RIGHTWARDS ARROW THROUGH X). Supplemental Arrows-B block (U+2900–U+297F). Hex 2947, decimal 10567.
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 (&#10567;, &#x2947;) go in markup. The CSS escape \2947 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 (&#x2947;) or decimal (&#10567;) 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