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

What You'll Learn
How to display the north east arrow crossing south east arrow (⤲) in HTML using hexadecimal, decimal, and CSS escape methods. This symbol shows a north-east arrow crossing a south-east arrow and is useful for maps, navigation UI, and diagrams that depict intersecting directional paths.
This character is U+2932 (NORTH EAST ARROW CROSSING SOUTH EAST ARROW) in the Supplemental Arrows-B block (U+2900–U+297F). Render it with ⤲, ⤲, or CSS escape \2932. There is no named HTML entity.
⚡ Quick Reference — NE Arrow Crossing SE Arrow
U+2932Supplemental Arrows-B
⤲Hexadecimal reference
⤲Decimal reference
—No named entity
Name Value
──────────── ──────────
Unicode U+2932
Hex code ⤲
HTML code ⤲
Named entity (none)
CSS code \2932
Meaning North east arrow crossing south east arrow
Related U+2197 = North east (↗, ↗)
U+2198 = South east (↘, ↘)
U+2931 = NE crossing NW (⤱)
Block Supplemental Arrows-B (U+2900–U+297F)Complete HTML Example
A simple example showing ⤲ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2932";
}
</style>
</head>
<body>
<p>Symbol (hex): ⤲</p>
<p>Symbol (decimal): ⤲</p>
<p id="point">Symbol (CSS): </p>
</body>
</html>🌐 Browser Support
The north east arrow crossing south east arrow (⤲) is supported in all modern browsers:
👀 Live Preview
See ⤲ in navigation and directional contexts:
🧠 How It Works
Hexadecimal Code
⤲ uses the Unicode hexadecimal value 2932 to display the crossing-arrow symbol.
Decimal HTML Code
⤲ uses the decimal Unicode value 10546 to display the same character.
CSS Entity
\2932 is used in CSS stylesheets, typically in the content property of pseudo-elements like ::before and ::after.
Same visual result
All three methods produce: ⤲. Unicode U+2932 is in Supplemental Arrows-B (U+2900–U+297F). There is no named HTML entity.
Use Cases
The north east arrow crossing south east arrow (⤲) is commonly used in:
Show intersecting north-east and south-east routes on maps and signage.
Indicate crossing paths, junctions, or overlapping navigation flows.
Technical diagrams where two directional paths cross each other.
Unicode charts, arrow references, and HTML entity tutorials.
Transport, logistics, and routing content with crossing directions.
Indoor navigation, campus maps, and directional legend keys.
💡 Best Practices
Do
- Use numeric references (
⤲or⤲) in HTML for portability - Use
\2932in CSScontentwhen 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
\2932directly in HTML text nodes - Use padded Unicode notation like U+02932—the correct value is
U+2932 - Use
\02932in CSS—the correct escape is\2932 - Confuse ⤲ with ⤱ (NE crossing NW) or ⤮ (NW crossing SE)
- Rely on the glyph alone for screen-reader users without a text alternative
Key Takeaways
Three references render ⤲ (no named entity)
⤲ ⤲For CSS stylesheets, use the escape in the content property
\2932Unicode U+2932 — NORTH EAST ARROW CROSSING SOUTH EAST ARROW
Supplemental Arrows-B block (U+2900–U+297F)
No named entity—use numeric codes or UTF-8 literal in source files
❓ Frequently Asked Questions
⤲ (hex), ⤲ (decimal), or \2932 in CSS content. All produce ⤲. There is no named HTML entity.U+2932 (NORTH EAST ARROW CROSSING SOUTH EAST ARROW). Supplemental Arrows-B block (U+2900–U+297F). Hex 2932, decimal 10546.⤲ or ⤲) go in markup. The CSS escape \2932 goes 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, symbols, and more.
8 people found this page helpful
