Right Vertical Box Line

Shortcodes

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

Unicode
U+23B9
HTML Code
⎹
HEX Code
⎹
CSS Code
\23B9
JS/JSON
\u23B9
Unix/C/PHP/JAVA
0x23B9
URL-encode
%E2%8E%B9
copied

Customize Right Vertical Box Line Symbol

Customize ⎹ symbol as you like and download Right 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 Right Vertical Box Line symbol in HTML, CSS, and JS?

Insert ⎹ Right Vertical Box Line using HTML

1. Copy-paste Right Vertical Box Line directly:
<span>⎹</span>
2. HTML Decimal Code:
<span>&#9145;</span>
3. Hexadecimal Code:
<span>&#x23B9;</span>
Preview:

Add Right Vertical Box Line symbol with CSS

.right-vertical-box-line::before {
    content: '\\23B9';
}
Preview: Right Vertical Box Line

Right Vertical Box Line JavaScript Code

1. Direct Symbol:
document.querySelector('.right-vertical-box-line').textContent = '⎹';
2. Unicode Escape for ⎹:
document.querySelector('.right-vertical-box-line').textContent = '\u23B9';
Preview: