Box Drawings Heavy Left

Shortcodes

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

Unicode
U+2578
HTML Code
╸
HEX Code
╸
CSS Code
\2578
JS/JSON
\u2578
Unix/C/PHP/JAVA
0x2578
URL-encode
%E2%95%B8

Customize Box Drawings Heavy Left

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

  

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

Insert in HTML

1. Direct symbol:
<span>╸</span>
HTML Code:
<span>&#9592;</span>
HEX Code:
<span>&#x2578;</span>

Add with CSS

.box-drawings-heavy-left::before {
  content: '\\2578';
}

Set it in JavaScript

document.querySelector('.box-drawings-heavy-left').textContent = '╸';
copied