Black Right-pointing Double Triangle

Shortcodes

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

Unicode
U+23E9
HTML Code
⏩
HEX Code
⏩
CSS Code
\23E9
JS/JSON
\u23E9
Unix/C/PHP/JAVA
0x23E9
URL-encode
%E2%8F%A9

Customize Black Right-pointing Double Triangle

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

  

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

Insert in HTML

1. Direct symbol:
<span>⏩</span>
HTML Code:
<span>&#9193;</span>
HEX Code:
<span>&#x23E9;</span>

Add with CSS

.black-right-pointing-double-triangle::before {
  content: '\\23E9';
}

Set it in JavaScript

document.querySelector('.black-right-pointing-double-triangle').textContent = '⏩';
copied