Left Triangle Beside Vertical Bar

Shortcodes

Copy useful codes for left triangle beside vertical bar symbol ⧏ to use in websites, apps, blogs, and docs.

Unicode
U+29CF
HTML Code
⧏
HEX Code
⧏
CSS Code
\29CF
JS/JSON
\u29CF
Unix/C/PHP/JAVA
0x29CF
URL-encode
%E2%A7%8F

Customize Left Triangle Beside Vertical Bar

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

  

How to use Left Triangle Beside Vertical Bar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⧏</span>
HTML Code:
<span>&#10703;</span>
HEX Code:
<span>&#x29CF;</span>

Add with CSS

.left-triangle-beside-vertical-bar::before {
  content: '\\29CF';
}

Set it in JavaScript

document.querySelector('.left-triangle-beside-vertical-bar').textContent = '⧏';
copied