Black Right-pointing Double Triangle With Vertical Bar

Shortcodes

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

Unicode
U+23ED
HTML Code
⏭
HEX Code
⏭
CSS Code
\23ED
JS/JSON
\u23ED
Unix/C/PHP/JAVA
0x23ED
URL-encode
%E2%8F%AD

Customize Black Right-pointing Double Triangle With Vertical Bar

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

  

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

Insert in HTML

1. Direct symbol:
<span>⏭</span>
HTML Code:
<span>&#9197;</span>
HEX Code:
<span>&#x23ED;</span>

Add with CSS

.black-right-pointing-double-triangle-with-vertical-bar::before {
  content: '\\23ED';
}

Set it in JavaScript

document.querySelector('.black-right-pointing-double-triangle-with-vertical-bar').textContent = '⏭';
copied