North West Arrow To Corner

Shortcodes

Copy and paste codes for North West Arrow To Corner symbol ⇱ to use in your websites, apps, blogs, and more.

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

Customize North West Arrow To Corner Symbol

Customize ⇱ symbol as you like and download North West Arrow To Corner as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to add North West Arrow To Corner symbol in HTML, CSS, and JS?

Insert ⇱ North West Arrow To Corner using HTML

1. Copy-paste North West Arrow To Corner directly:
<span>⇱</span>
2. HTML Decimal Code:
<span>&#8689;</span>
3. Hexadecimal Code:
<span>&#x21F1;</span>
Preview:

Add North West Arrow To Corner symbol with CSS

.north-west-arrow-to-corner::before {
    content: '\\21F1';
}
Preview: North West Arrow To Corner

North West Arrow To Corner JavaScript Code

1. Direct Symbol:
document.querySelector('.north-west-arrow-to-corner').textContent = '⇱';
2. Unicode Escape for ⇱:
document.querySelector('.north-west-arrow-to-corner').textContent = '\u21F1';
Preview: