Left Vertical Box Line

Shortcodes

Copy and paste codes for Left Vertical Box Line symbol ⎸ to use in your websites, apps, blogs, and more.

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

Customize Left Vertical Box Line Symbol

Customize ⎸ symbol as you like and download Left Vertical Box Line as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Left Vertical Box Line symbol in HTML, CSS, and JS?

Insert ⎸ Left Vertical Box Line using HTML

1. Copy-paste Left Vertical Box Line directly:
<span>⎸</span>
2. HTML Decimal Code:
<span>&#9144;</span>
3. Hexadecimal Code:
<span>&#x23B8;</span>
Preview:

Add Left Vertical Box Line symbol with CSS

.left-vertical-box-line::before {
    content: '\\23B8';
}
Preview: Left Vertical Box Line

Left Vertical Box Line JavaScript Code

1. Direct Symbol:
document.querySelector('.left-vertical-box-line').textContent = '⎸';
2. Unicode Escape for ⎸:
document.querySelector('.left-vertical-box-line').textContent = '\u23B8';
Preview: