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

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
U+292FSupplemental Arrows-B
⤯Hexadecimal reference
⤯Decimal reference
—Use numeric codes only
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 (⤬)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\292F";
}
</style>
</head>
<body>
<p>Falling Diagonal NE Arrow using Hexadecimal: ⤯</p>
<p>Falling Diagonal NE Arrow using HTML Code: ⤯</p>
<p id="point">Falling Diagonal NE Arrow using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Falling Diagonal NE Arrow entity is universally supported in modern browsers when a font with arrow coverage is available:
👀 Live Preview
See the falling diagonal NE arrow (⤯) in flow context and compared with the standard NE arrow (↗):
🧠 How It Works
Hexadecimal Code
⤯ uses the Unicode hexadecimal value 292F to display the Falling Diagonal Crossing North East Arrow. The x prefix indicates hexadecimal format.
Decimal HTML Code
⤯ uses the decimal Unicode value 10543 to display the same character.
CSS Entity
\292F is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Indicate direction or movement in buttons, links, and interface controls.
Show process flow, transitions, or relationships in diagrams and technical charts.
Represent navigation paths or step-by-step process directions.
Use in technical or mathematical documentation where arrow notation is required.
Display shortcut keys or key combinations in help text and UI labels.
Use in games or apps where directional or arrow notation is needed.
💡 Best Practices
Do
- Use
⤯or⤯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
::beforeor::afterfor 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
\292Fin HTML text nodes - Assume every font includes Supplemental Arrows-B glyphs
- Mix entity styles randomly in one file
Key Takeaways
Two HTML numeric references plus CSS render ⤯
⤯ ⤯For CSS stylesheets, use the escape in the content property
\292FUnicode U+292F — FALLING DIAGONAL CROSSING NORTH EAST ARROW
Part of the Supplemental Arrows-B block (U+2900–U+297F)
Three methods, no named HTML entity
❓ Frequently Asked Questions
⤯ (hex), ⤯ (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.⤯ or ⤯ in markup, or \292F in CSS.⤯ or ⤯) 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.
8 people found this page helpful
