North West Arrow To Corner

Shortcodes

Copy useful codes for north west arrow to corner symbol ⇱ to use in websites, apps, blogs, and docs.

Unicode
U+21F1
HTML Code
⇱
HEX Code
⇱
CSS Code
\21F1
JS/JSON
\u21F1
Unix/C/PHP/JAVA
0x21F1
URL-encode
%E2%87%B1

Customize North West Arrow To Corner

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

  

How to use North West Arrow To Corner Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⇱</span>
HTML Code:
<span>&#8689;</span>
HEX Code:
<span>&#x21F1;</span>

Add with CSS

.north-west-arrow-to-corner::before {
  content: '\\21F1';
}

Set it in JavaScript

document.querySelector('.north-west-arrow-to-corner').textContent = '⇱';
copied