Box Drawings Vertical Heavy And Left Light

Shortcodes

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

Unicode
U+2528
HTML Code
┨
HEX Code
┨
CSS Code
\2528
JS/JSON
\u2528
Unix/C/PHP/JAVA
0x2528
URL-encode
%E2%94%A8

Customize Box Drawings Vertical Heavy And Left Light

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

  

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

Insert in HTML

1. Direct symbol:
<span>┨</span>
HTML Code:
<span>&#9512;</span>
HEX Code:
<span>&#x2528;</span>

Add with CSS

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

Set it in JavaScript

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