Up Down White Arrow

Shortcodes

Copy useful codes for up down white arrow symbol ⇳ to use in websites, apps, blogs, and docs.

Unicode
U+21F3
HTML Code
⇳
HEX Code
⇳
CSS Code
\21F3
JS/JSON
\u21F3
Unix/C/PHP/JAVA
0x21F3
URL-encode
%E2%87%B3

Customize Up Down White Arrow

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

  

How to use Up Down White Arrow Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⇳</span>
HTML Code:
<span>&#8691;</span>
HEX Code:
<span>&#x21F3;</span>

Add with CSS

.up-down-white-arrow::before {
  content: '\\21F3';
}

Set it in JavaScript

document.querySelector('.up-down-white-arrow').textContent = '⇳';
copied