Black Left-pointing Double Triangle With Vertical Bar

Shortcodes

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

Unicode
U+23EE
HTML Code
⏮
HEX Code
⏮
CSS Code
\23EE
JS/JSON
\u23EE
Unix/C/PHP/JAVA
0x23EE
URL-encode
%E2%8F%AE

Customize Black Left-pointing Double Triangle With Vertical Bar

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

  

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

Insert in HTML

1. Direct symbol:
<span>⏮</span>
HTML Code:
<span>&#9198;</span>
HEX Code:
<span>&#x23EE;</span>

Add with CSS

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

Set it in JavaScript

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