Box Drawings Light Left

Shortcodes

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

Unicode
U+2574
HTML Code
╴
HEX Code
╴
CSS Code
\2574
JS/JSON
\u2574
Unix/C/PHP/JAVA
0x2574
URL-encode
%E2%95%B4

Customize Box Drawings Light Left

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

  

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

Insert in HTML

1. Direct symbol:
<span>╴</span>
HTML Code:
<span>&#9588;</span>
HEX Code:
<span>&#x2574;</span>

Add with CSS

.box-drawings-light-left::before {
  content: '\\2574';
}

Set it in JavaScript

document.querySelector('.box-drawings-light-left').textContent = '╴';
copied