Left Vertical Box Line

Shortcodes

Copy useful codes for left vertical box line symbol ⎸ to use in websites, apps, blogs, and docs.

Unicode
U+23B8
HTML Code
⎸
HEX Code
⎸
CSS Code
\23B8
JS/JSON
\u23B8
Unix/C/PHP/JAVA
0x23B8
URL-encode
%E2%8E%B8

Customize Left Vertical Box Line

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

  

How to use Left Vertical Box Line Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⎸</span>
HTML Code:
<span>&#9144;</span>
HEX Code:
<span>&#x23B8;</span>

Add with CSS

.left-vertical-box-line::before {
  content: '\\23B8';
}

Set it in JavaScript

document.querySelector('.left-vertical-box-line').textContent = '⎸';
copied