North West Arrow To Long Bar

Shortcodes

Copy useful codes for north west arrow to long bar symbol ↸ to use in websites, apps, blogs, and docs.

Unicode
U+21B8
HTML Code
↸
HEX Code
↸
CSS Code
\21B8
JS/JSON
\u21B8
Unix/C/PHP/JAVA
0x21B8
URL-encode
%E2%86%B8

Customize North West Arrow To Long Bar

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

  

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

Insert in HTML

1. Direct symbol:
<span>↸</span>
HTML Code:
<span>&#8632;</span>
HEX Code:
<span>&#x21B8;</span>

Add with CSS

.north-west-arrow-to-long-bar::before {
  content: '\\21B8';
}

Set it in JavaScript

document.querySelector('.north-west-arrow-to-long-bar').textContent = '↸';
copied