South East Arrow Crossing North East Arrow

Shortcodes

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

Unicode
U+292D
HTML Code
⤭
HEX Code
⤭
CSS Code
\292D
JS/JSON
\u292D
Unix/C/PHP/JAVA
0x292D
URL-encode
%E2%A4%AD

Customize South East Arrow Crossing North East Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>⤭</span>
HTML Code:
<span>&#10541;</span>
HEX Code:
<span>&#x292D;</span>

Add with CSS

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

Set it in JavaScript

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