Black Right-pointing Triangle With Double Vertical Bar

Shortcodes

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

Unicode
U+23EF
HTML Code
⏯
HEX Code
⏯
CSS Code
\23EF
JS/JSON
\u23EF
Unix/C/PHP/JAVA
0x23EF
URL-encode
%E2%8F%AF

Customize Black Right-pointing Triangle With Double Vertical Bar

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

  

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

Insert in HTML

1. Direct symbol:
<span>⏯</span>
HTML Code:
<span>&#9199;</span>
HEX Code:
<span>&#x23EF;</span>

Add with CSS

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

Set it in JavaScript

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