HTML Entity for North West Arrow Crossing North East Arrow (⤰)

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

What You'll Learn

How to display the north west arrow crossing north east arrow (⤰) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol shows a north-west arrow crossing a north-east arrow and is useful for maps, navigation UI, and diagrams that depict intersecting directional paths.

This character is U+2930 (NORTH WEST ARROW CROSSING NORTH EAST ARROW) in the Supplemental Arrows-B block (U+2900–U+297F). Render it with ⤰, ⤰, or CSS escape \2930. There is no named HTML entity.

⚡ Quick Reference — NW Arrow Crossing NE Arrow

Unicode U+2930

Supplemental Arrows-B

Hex Code ⤰

Hexadecimal reference

HTML Code ⤰

Decimal reference

Named Entity

No named entity

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2930
Hex code       ⤰
HTML code      ⤰
Named entity   (none)
CSS code       \2930
Meaning        North west arrow crossing north east arrow
Related        U+2196 = North west (↖, ↖)
               U+2197 = North east (↗, ↗)
               U+2931 = NE crossing NW (⤱)
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:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2930";
  }
 </style>
</head>
<body>
<p>Symbol (hex): &#x2930;</p>
<p>Symbol (decimal): &#10544;</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The north west arrow crossing north east arrow (⤰) is supported in all modern browsers:

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

👀 Live Preview

See ⤰ in navigation and directional contexts:

Inline text Routes intersect ⤰ where north-west and north-east paths cross.
Large glyph
With base arrows ↖ ↗ ⤰
Map legend Crossing paths ⤰   One-way ↖
Numeric refs &#x2930; &#10544; \2930

🧠 How It Works

1

Hexadecimal Code

&#x2930; uses the Unicode hexadecimal value 2930 to display the crossing-arrow symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Same visual result

All three methods produce: . Unicode U+2930 is in Supplemental Arrows-B (U+2900–U+297F). There is no named HTML entity.

Use Cases

The north west arrow crossing north east arrow (⤰) is commonly used in:

🗺 Maps & navigation

Show intersecting north-west and north-east routes on maps and signage.

💻 User interfaces

Indicate crossing paths, junctions, or overlapping navigation flows.

📊 Flow diagrams

Technical diagrams where two directional paths cross each other.

📄 Documentation

Unicode charts, arrow references, and HTML entity tutorials.

🛠 Technical writing

Transport, logistics, and routing content with crossing directions.

🎯 Wayfinding

Indoor navigation, campus maps, and directional legend keys.

💡 Best Practices

Do

  • Use numeric references (&#x2930; or &#10544;) in HTML for portability
  • Use \2930 in CSS content when inserting via pseudo-elements
  • Pair ⤰ with accessible text (e.g. “crossing paths” or aria-label)
  • Serve pages with UTF-8 (<meta charset="utf-8">)
  • Distinguish ⤰ from simple arrows ↖ and ↗ when meaning matters

Don’t

  • Put the CSS escape \2930 directly in HTML text nodes
  • Use padded Unicode notation like U+02930—the correct value is U+2930
  • Use \02930 in CSS—the correct escape is \2930
  • Confuse ⤰ with ⤱ (NE crossing NW) or ⤲ (NE crossing SE)
  • Rely on the glyph alone for screen-reader users without a text alternative

Key Takeaways

1

Three references render ⤰ (no named entity)

&#x2930; &#10544;
2

For CSS stylesheets, use the escape in the content property

\2930
3

Unicode U+2930 — NORTH WEST ARROW CROSSING NORTH EAST ARROW

4

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

5

No named entity—use numeric codes or UTF-8 literal in source files

❓ Frequently Asked Questions

Use &#x2930; (hex), &#10544; (decimal), or \2930 in CSS content. All produce ⤰. There is no named HTML entity.
U+2930 (NORTH WEST ARROW CROSSING NORTH EAST ARROW). Supplemental Arrows-B block (U+2900–U+297F). Hex 2930, decimal 10544.
In maps, navigation UI, flow diagrams, and technical content where you need to show a north-west arrow crossing a north-east arrow—for example, intersecting routes or crossing directional paths.
HTML references (&#10544; or &#x2930;) go in markup. The CSS escape \2930 goes in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Supplemental Arrows-B symbols like U+2930 are not part of the named HTML entity set. Numeric references and CSS escapes are the standard way to render ⤰.

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