Black Up-pointing Double Triangle

Shortcodes

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

Unicode
U+23EB
HTML Code
⏫
HEX Code
⏫
CSS Code
\23EB
JS/JSON
\u23EB
Unix/C/PHP/JAVA
0x23EB
URL-encode
%E2%8F%AB

Customize Black Up-pointing Double Triangle

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

  

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

Insert in HTML

1. Direct symbol:
<span>⏫</span>
HTML Code:
<span>&#9195;</span>
HEX Code:
<span>&#x23EB;</span>

Add with CSS

.black-up-pointing-double-triangle::before {
  content: '\\23EB';
}

Set it in JavaScript

document.querySelector('.black-up-pointing-double-triangle').textContent = '⏫';
copied