Box Drawings Light Right

Shortcodes

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

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

Customize Box Drawings Light Right

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

  

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

Insert in HTML

1. Direct symbol:
<span>╶</span>
HTML Code:
<span>&#9590;</span>
HEX Code:
<span>&#x2576;</span>

Add with CSS

.box-drawings-light-right::before {
  content: '\\2576';
}

Set it in JavaScript

document.querySelector('.box-drawings-light-right').textContent = '╶';
copied