Box Drawings Light Up

Shortcodes

Copy and paste codes for Box Drawings Light Up symbol ╵ to use in your websites, apps, blogs, and more.

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

Customize Box Drawings Light Up Symbol

Customize ╵ symbol as you like and download Box Drawings Light Up as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Box Drawings Light Up symbol in HTML, CSS, and JS?

Insert ╵ Box Drawings Light Up using HTML

1. Copy-paste Box Drawings Light Up directly:
<span>╵</span>
2. HTML Decimal Code:
<span>&#9589;</span>
3. Hexadecimal Code:
<span>&#x2575;</span>
Preview:

Add Box Drawings Light Up symbol with CSS

.box-drawings-light-up::before {
    content: '\\2575';
}
Preview: Box Drawings Light Up

Box Drawings Light Up JavaScript Code

1. Direct Symbol:
document.querySelector('.box-drawings-light-up').textContent = '╵';
2. Unicode Escape for ╵:
document.querySelector('.box-drawings-light-up').textContent = '\u2575';
Preview: