Up Down Arrow With Base

Shortcodes

Copy useful codes for up down arrow with base symbol ↨ to use in websites, apps, blogs, and docs.

Unicode
U+21A8
Alt Code
23
HTML Code
↨
HEX Code
↨
CSS Code
\21A8
JS/JSON
\u21A8
Unix/C/PHP/JAVA
0x21A8
URL-encode
%E2%86%A8

Customize Up Down Arrow With Base

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

  

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

Insert in HTML

1. Direct symbol:
<span>↨</span>
HTML Code:
<span>&#8616;</span>
HEX Code:
<span>&#x21A8;</span>

Add with CSS

.up-down-arrow-with-base::before {
  content: '\\21A8';
}

Set it in JavaScript

document.querySelector('.up-down-arrow-with-base').textContent = '↨';
copied