Left Vertical Bar With Quill

Shortcodes

Copy useful codes for left vertical bar with quill symbol ⸠ to use in websites, apps, blogs, and docs.

Unicode
U+2E20
HTML Code
⸠
HEX Code
⸠
CSS Code
\2E20
JS/JSON
\u2E20
Unix/C/PHP/JAVA
0x2E20
URL-encode
%E2%B8%A0

Customize Left Vertical Bar With Quill

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

  

How to use Left Vertical Bar With Quill Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸠</span>
HTML Code:
<span>&#11808;</span>
HEX Code:
<span>&#x2E20;</span>

Add with CSS

.left-vertical-bar-with-quill::before {
  content: '\\2E20';
}

Set it in JavaScript

document.querySelector('.left-vertical-bar-with-quill').textContent = '⸠';
copied