Box Drawings Light Up

Shortcodes

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

Unicode
U+2575
HTML Code
╵
HEX Code
╵
CSS Code
\2575
JS/JSON
\u2575
Unix/C/PHP/JAVA
0x2575
URL-encode
%E2%95%B5

Customize Box Drawings Light Up

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

  

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

Insert in HTML

1. Direct symbol:
<span>╵</span>
HTML Code:
<span>&#9589;</span>
HEX Code:
<span>&#x2575;</span>

Add with CSS

.box-drawings-light-up::before {
  content: '\\2575';
}

Set it in JavaScript

document.querySelector('.box-drawings-light-up').textContent = '╵';
copied