HTML Entity for Falling Diagonal Crossing North East Arrow (⤯)

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

What You'll Learn

How to display the Falling Diagonal Crossing North East Arrow (⤯) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+292F (FALLING DIAGONAL CROSSING NORTH EAST ARROW) in the Supplemental Arrows-B block (U+2900–U+297F)—used for directional indicators, flowcharts, UI elements, and technical or mathematical notation.

Render it with ⤯, ⤯, or CSS escape \292F. There is no named HTML entity. Do not confuse ⤯ with the north east arrow (↗, U+2197) or the south east arrow (↘, U+2198).

⚡ Quick Reference — Falling Diagonal NE Arrow

Unicode U+292F

Supplemental Arrows-B

Hex Code ⤯

Hexadecimal reference

HTML Code ⤯

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+292F
Hex code       ⤯
HTML code      ⤯
Named entity   (none)
CSS code       \292F
Meaning        Falling diagonal crossing north east arrow
Related        U+2197 = NE arrow (↗); U+292C = Falling diagonal crossing rising diagonal (⤬)
1

Complete HTML Example

This example demonstrates the Falling Diagonal NE Arrow (⤯) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity for this symbol:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\292F";
  }
 </style>
</head>
<body>
<p>Falling Diagonal NE Arrow using Hexadecimal: &#x292F;</p>
<p>Falling Diagonal NE Arrow using HTML Code: &#10543;</p>
<p id="point">Falling Diagonal NE Arrow using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Falling Diagonal NE Arrow entity is universally supported in modern browsers when a font with arrow coverage is available:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the falling diagonal NE arrow (⤯) in flow context and compared with the standard NE arrow (↗):

Process flow Start ⤯ Process ⤯ End
Large glyph
vs NE arrow ⤯ (diagonal crossing)   vs   ↗ (standard NE)
Numeric refs &#x292F; &#10543;
No named entity Use hex or decimal only

🧠 How It Works

1

Hexadecimal Code

&#x292F; uses the Unicode hexadecimal value 292F to display the Falling Diagonal Crossing North East Arrow. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\292F is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+292F in the Supplemental Arrows-B block (U+2900–U+297F). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

The Falling Diagonal Crossing North East Arrow (⤯) commonly appears in:

🚀 Directional UI

Indicate direction or movement in buttons, links, and interface controls.

📊 Flowcharts

Show process flow, transitions, or relationships in diagrams and technical charts.

🧭 Navigation flows

Represent navigation paths or step-by-step process directions.

📑 Technical docs

Use in technical or mathematical documentation where arrow notation is required.

⌨ Keyboard shortcuts

Display shortcut keys or key combinations in help text and UI labels.

🎮 Apps & games

Use in games or apps where directional or arrow notation is needed.

💡 Best Practices

Do

  • Use &#x292F; or &#10543; for readable arrow markup
  • Pair the arrow with text labels when meaning might be ambiguous
  • Add aria-label (e.g. “north east direction”) for accessibility
  • Use the CSS escape in ::before or ::after for repeated icon patterns
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⤯ (diagonal crossing) with ↗ (standard NE arrow)
  • Expect a named entity—none exists for U+292F
  • Put CSS escape \292F in HTML text nodes
  • Assume every font includes Supplemental Arrows-B glyphs
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS render ⤯

&#x292F; &#10543;
2

For CSS stylesheets, use the escape in the content property

\292F
3

Unicode U+292F — FALLING DIAGONAL CROSSING NORTH EAST ARROW

4

Part of the Supplemental Arrows-B block (U+2900–U+297F)

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x292F; (hex), &#10543; (decimal), or \292F in CSS content. There is no named entity.
U+292F (FALLING DIAGONAL CROSSING NORTH EAST ARROW). Supplemental Arrows-B block (U+2900–U+297F). Hex 292F, decimal 10543. Used for directional notation and diagrams.
In directional UI elements, flowcharts and diagrams, navigation or process flows, technical documentation, keyboard shortcut displays, and game or app interfaces where arrow notation is needed.
Named entities cover a subset of common characters. Supplemental Arrows-B symbols like U+292F have no named entity—use &#x292F; or &#10543; in markup, or \292F in CSS.
HTML references (&#10543; or &#x292F;) go in markup. The CSS escape \292F is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.

Explore More HTML Entities!

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