HTML Entity for South East Arrow Crossing North East Arrow (⤭)

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

What You'll Learn

How to display the South East Arrow Crossing North East Arrow (⤭) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+292D in the Supplemental Arrows-B block (U+2900–U+297F)—a directional symbol where the south-east arrow crosses the north-east arrow.

Render it with ⤭, ⤭, or CSS \292D. There is no named HTML entity for this symbol. Related simple arrow: South East Arrow (↘, ↘).

⚡ Quick Reference — SE Arrow Crossing NE Arrow

Unicode U+292D

Supplemental Arrows-B

Hex Code ⤭

Hexadecimal reference

HTML Code ⤭

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+292D
Hex code       ⤭
HTML code      ⤭
Named entity   (none)
CSS code       \292D
Meaning        SE arrow crossing NE arrow
Related        U+2198 = south east arrow (↘, ↘)
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 (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\292D";
  }
 </style>
</head>
<body>
<p>Crossing arrow (hex): &#x292D;</p>
<p>Crossing arrow (decimal): &#10541;</p>
<p id="point">Crossing arrow (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The crossing arrow (⤭) is supported in modern browsers when fonts include Supplemental Arrows-B glyphs:

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

👀 Live Preview

See the crossing arrow in navigation and diagram contexts:

Single symbol
Navigation Merge routes ⤭ south-east and north-east
Diagram label Path A ⤭ Path B (crossing arrows)
Compare arrows Simple ↘  |  Crossing ⤭
Numeric refs &#x292D; &#10541; \292D

🧠 How It Works

1

Hexadecimal Code

&#x292D; uses Unicode hexadecimal 292D to display ⤭ in HTML markup.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\292D is used in CSS stylesheets in the content property of pseudo-elements like ::after.

CSS stylesheet
=

Crossing arrow result

All three methods produce . Unicode U+292D in Supplemental Arrows-B. No named entity.

Use Cases

The South East Arrow Crossing North East Arrow (⤭) commonly appears in:

🗼 Navigation

Maps and guides showing crossing or merging directional paths.

📱 UI elements

Buttons and icons representing intersecting route directions.

📊 Flowcharts

Diagrams with crossing arrows and complex directional flows.

📄 Documentation

Technical docs and API references with crossing-arrow notation.

🎨 Web design

Layouts and visual elements needing specialized arrow glyphs.

🛠 Dashboards

Data views showing intersecting trends or route overlays.

💡 Best Practices

Do

  • Use &#x292D; or &#10541; in HTML (no named entity)
  • Add aria-label when the symbol is the only control label
  • Pair ⤭ with descriptive text in diagrams and UI
  • Pick hex or decimal consistently across your project
  • Test rendering across browsers and font stacks

Don’t

  • Expect a named HTML entity for U+292D
  • Use padded Unicode notation like U+0292D—the correct value is U+292D
  • Put CSS escape \292D in HTML text nodes
  • Confuse ⤭ with the simple south-east arrow ↘ (&searr;)
  • Rely on the glyph alone without context for accessibility

Key Takeaways

1

Three ways to render U+292D in HTML and CSS

&#x292D; &#10541;
2

For CSS stylesheets, use \292D in the content property

3

Unicode U+292D — SE arrow crossing NE arrow (⤭)

4

No named entity—distinct from ↘ (&searr;, U+2198)

❓ Frequently Asked Questions

Use &#x292D; (hex), &#10541; (decimal), or \292D in CSS content. There is no named HTML entity. All three render ⤭.
U+292D (SOUTH EAST ARROW CROSSING NORTH EAST ARROW). Supplemental Arrows-B (U+2900–U+297F). Hex 292D, decimal 10541.
For directional indicators, navigation icons, UI elements, flowcharts, diagrams, and technical documentation that need a south-east arrow crossing a north-east arrow.
No. Use numeric hex or decimal references in HTML, or \292D in CSS content. This is standard for Supplemental Arrows-B characters without a named entity.
HTML references (&#10541; or &#x292D;) go in markup. The CSS escape \292D is used in stylesheets, typically in the content property of ::before or ::after. Same visual result, different layers of the stack.

Explore More HTML Entities!

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