Black Medium Left-pointing Triangle

Shortcodes

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

Unicode
U+23F4
HTML Code
⏴
HEX Code
⏴
CSS Code
\23F4
JS/JSON
\u23F4
Unix/C/PHP/JAVA
0x23F4
URL-encode
%E2%8F%B4

Customize Black Medium Left-pointing Triangle

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

  

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

Insert in HTML

1. Direct symbol:
<span>⏴</span>
HTML Code:
<span>&#9204;</span>
HEX Code:
<span>&#x23F4;</span>

Add with CSS

.black-medium-left-pointing-triangle::before {
  content: '\\23F4';
}

Set it in JavaScript

document.querySelector('.black-medium-left-pointing-triangle').textContent = '⏴';
copied