North East Arrow Crossing South East Arrow

Shortcodes

Copy useful codes for north east arrow crossing south east arrow symbol ⤮ to use in websites, apps, blogs, and docs.

Unicode
U+292E
HTML Code
⤮
HEX Code
⤮
CSS Code
\292E
JS/JSON
\u292E
Unix/C/PHP/JAVA
0x292E
URL-encode
%E2%A4%AE

Customize North East Arrow Crossing South East Arrow

Customize ⤮, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use North East Arrow Crossing South East Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⤮</span>
HTML Code:
<span>&#10542;</span>
HEX Code:
<span>&#x292E;</span>

Add with CSS

.north-east-arrow-crossing-south-east-arrow::before {
  content: '\\292E';
}

Set it in JavaScript

document.querySelector('.north-east-arrow-crossing-south-east-arrow').textContent = '⤮';
copied