Up Down Arrow

Shortcodes

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

Unicode
U+2195
Alt Code
18
HTML Code
↕
HEX Code
↕
CSS Code
\2195
JS/JSON
\u2195
Unix/C/PHP/JAVA
0x2195
URL-encode
%E2%86%95

Customize Up Down Arrow

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

  

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

Insert in HTML

1. Direct symbol:
<span>↕</span>
HTML Code:
<span>&#8597;</span>
HEX Code:
<span>&#x2195;</span>

Add with CSS

.up-down-arrow::before {
  content: '\\2195';
}

Set it in JavaScript

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