Black Left-pointing Double Triangle

Shortcodes

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

Unicode
U+23EA
HTML Code
⏪
HEX Code
⏪
CSS Code
\23EA
JS/JSON
\u23EA
Unix/C/PHP/JAVA
0x23EA
URL-encode
%E2%8F%AA

Customize Black Left-pointing Double Triangle

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

  

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

Insert in HTML

1. Direct symbol:
<span>⏪</span>
HTML Code:
<span>&#9194;</span>
HEX Code:
<span>&#x23EA;</span>

Add with CSS

.black-left-pointing-double-triangle::before {
  content: '\\23EA';
}

Set it in JavaScript

document.querySelector('.black-left-pointing-double-triangle').textContent = '⏪';
copied