North West Arrow Crossing North East Arrow

Shortcodes

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

Unicode
U+2932
HTML Code
⤲
HEX Code
⤲
CSS Code
\2932
JS/JSON
\u2932
Unix/C/PHP/JAVA
0x2932
URL-encode
%E2%A4%B2

Customize North West Arrow Crossing North East Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>⤲</span>
HTML Code:
<span>&#10546;</span>
HEX Code:
<span>&#x2932;</span>

Add with CSS

.north-west-arrow-crossing-north-east-arrow::before {
  content: '\\2932';
}

Set it in JavaScript

document.querySelector('.north-west-arrow-crossing-north-east-arrow').textContent = '⤲';
copied