Downwards Arrow With Double Stroke

Shortcodes

Copy useful codes for downwards arrow with double stroke symbol ⇟ to use in websites, apps, blogs, and docs.

Unicode
U+21DF
HTML Code
⇟
HEX Code
⇟
CSS Code
\21DF
JS/JSON
\u21DF
Unix/C/PHP/JAVA
0x21DF
URL-encode
%E2%87%9F

Customize Downwards Arrow With Double Stroke

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

  

How to use Downwards Arrow With Double Stroke Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⇟</span>
HTML Code:
<span>&#8671;</span>
HEX Code:
<span>&#x21DF;</span>

Add with CSS

.downwards-arrow-with-double-stroke::before {
  content: '\\21DF';
}

Set it in JavaScript

document.querySelector('.downwards-arrow-with-double-stroke').textContent = '⇟';
copied