Box Drawings Light Left And Heavy Right

Shortcodes

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

Unicode
U+257C
HTML Code
╼
HEX Code
╼
CSS Code
\257C
JS/JSON
\u257C
Unix/C/PHP/JAVA
0x257C
URL-encode
%E2%95%BC

Customize Box Drawings Light Left And Heavy Right

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

  

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

Insert in HTML

1. Direct symbol:
<span>╼</span>
HTML Code:
<span>&#9596;</span>
HEX Code:
<span>&#x257C;</span>

Add with CSS

.box-drawings-light-left-and-heavy-right::before {
  content: '\\257C';
}

Set it in JavaScript

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