Box Drawings Light Vertical

Shortcodes

Copy useful codes for box drawings light vertical symbol │ to use in websites, apps, blogs, and docs.

Unicode
U+2502
Alt Code
179
HTML Code
│
HEX Code
│
CSS Code
\2502
JS/JSON
\u2502
Unix/C/PHP/JAVA
0x2502
URL-encode
%E2%94%82

Customize Box Drawings Light Vertical

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

  

How to use Box Drawings Light Vertical Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>│</span>
HTML Code:
<span>&#9474;</span>
HEX Code:
<span>&#x2502;</span>

Add with CSS

.box-drawings-light-vertical::before {
  content: '\\2502';
}

Set it in JavaScript

document.querySelector('.box-drawings-light-vertical').textContent = '│';
copied