Box Drawings Heavy Vertical

Shortcodes

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

Unicode
U+2503
HTML Code
┃
HEX Code
┃
CSS Code
\2503
JS/JSON
\u2503
Unix/C/PHP/JAVA
0x2503
URL-encode
%E2%94%83

Customize Box Drawings Heavy Vertical

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

  

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

Insert in HTML

1. Direct symbol:
<span>┃</span>
HTML Code:
<span>&#9475;</span>
HEX Code:
<span>&#x2503;</span>

Add with CSS

.box-drawings-heavy-vertical::before {
  content: '\\2503';
}

Set it in JavaScript

document.querySelector('.box-drawings-heavy-vertical').textContent = '┃';
copied