Black Down-pointing Double Triangle

Shortcodes

Copy useful codes for black down-pointing double triangle symbol ⏬ to use in websites, apps, blogs, and docs.

Unicode
U+23EC
HTML Code
⏬
HEX Code
⏬
CSS Code
\23EC
JS/JSON
\u23EC
Unix/C/PHP/JAVA
0x23EC
URL-encode
%E2%8F%AC

Customize Black Down-pointing Double Triangle

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

  

How to use Black Down-pointing Double Triangle Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⏬</span>
HTML Code:
<span>&#9196;</span>
HEX Code:
<span>&#x23EC;</span>

Add with CSS

.black-down-pointing-double-triangle::before {
  content: '\\23EC';
}

Set it in JavaScript

document.querySelector('.black-down-pointing-double-triangle').textContent = '⏬';
copied