Right Vertical Box Line

Shortcodes

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

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

Customize Right Vertical Box Line

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

  

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

Insert in HTML

1. Direct symbol:
<span>⎹</span>
HTML Code:
<span>&#9145;</span>
HEX Code:
<span>&#x23B9;</span>

Add with CSS

.right-vertical-box-line::before {
  content: '\\23B9';
}

Set it in JavaScript

document.querySelector('.right-vertical-box-line').textContent = '⎹';
copied