Box Drawings Vertical Heavy And Right Light

Shortcodes

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

Unicode
U+2520
HTML Code
┠
HEX Code
┠
CSS Code
\2520
JS/JSON
\u2520
Unix/C/PHP/JAVA
0x2520
URL-encode
%E2%94%A0

Customize Box Drawings Vertical Heavy And Right Light

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

  

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

Insert in HTML

1. Direct symbol:
<span>┠</span>
HTML Code:
<span>&#9504;</span>
HEX Code:
<span>&#x2520;</span>

Add with CSS

.box-drawings-vertical-heavy-and-right-light::before {
  content: '\\2520';
}

Set it in JavaScript

document.querySelector('.box-drawings-vertical-heavy-and-right-light').textContent = '┠';
copied