Heavy North East Arrow

Shortcodes

Copy useful codes for heavy north east arrow symbol ➚ to use in websites, apps, blogs, and docs.

Unicode
U+279A
HTML Code
➚
HEX Code
➚
CSS Code
\279A
JS/JSON
\u279A
Unix/C/PHP/JAVA
0x279A
URL-encode
%E2%9E%9A

Customize Heavy North East Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>➚</span>
HTML Code:
<span>&#10138;</span>
HEX Code:
<span>&#x279A;</span>

Add with CSS

.heavy-north-east-arrow::before {
  content: '\\279A';
}

Set it in JavaScript

document.querySelector('.heavy-north-east-arrow').textContent = '➚';
copied