Box Drawings Heavy Left And Light Right

Shortcodes

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

Unicode
U+257E
HTML Code
╾
HEX Code
╾
CSS Code
\257E
JS/JSON
\u257E
Unix/C/PHP/JAVA
0x257E
URL-encode
%E2%95%BE

Customize Box Drawings Heavy Left And Light Right

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

  

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

Insert in HTML

1. Direct symbol:
<span>╾</span>
HTML Code:
<span>&#9598;</span>
HEX Code:
<span>&#x257E;</span>

Add with CSS

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

Set it in JavaScript

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