Box Drawings Light Right

Shortcodes

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

Unicode
U+2576
HTML Code
╶
HEX Code
╶
CSS Code
\2576
JS/JSON
\u2576
Unix/C/PHP/JAVA
0x2576
URL-encode
%E2%95%B6
copied

Customize Box Drawings Light Right Symbol

Customize ╶ symbol as you like and download Box Drawings Light Right 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 Right symbol in HTML, CSS, and JS?

Insert ╶ Box Drawings Light Right using HTML

1. Copy-paste Box Drawings Light Right directly:
<span>╶</span>
2. HTML Decimal Code:
<span>&#9590;</span>
3. Hexadecimal Code:
<span>&#x2576;</span>
Preview:

Add Box Drawings Light Right symbol with CSS

.box-drawings-light-right::before {
    content: '\\2576';
}
Preview: Box Drawings Light Right

Box Drawings Light Right JavaScript Code

1. Direct Symbol:
document.querySelector('.box-drawings-light-right').textContent = '╶';
2. Unicode Escape for ╶:
document.querySelector('.box-drawings-light-right').textContent = '\u2576';
Preview: