North East Arrow

Shortcodes

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

Unicode
U+2197
HTML Code
↗
HEX Code
↗
CSS Code
\2197
JS/JSON
\u2197
Unix/C/PHP/JAVA
0x2197
URL-encode
%E2%86%97

Customize North East Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>↗</span>
HTML Code:
<span>&#8599;</span>
HEX Code:
<span>&#x2197;</span>

Add with CSS

.north-east-arrow::before {
  content: '\\2197';
}

Set it in JavaScript

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