Box Drawings Down Heavy And Left Light

Shortcodes

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

Unicode
U+2512
HTML Code
┒
HEX Code
┒
CSS Code
\2512
JS/JSON
\u2512
Unix/C/PHP/JAVA
0x2512
URL-encode
%E2%94%92

Customize Box Drawings Down Heavy And Left Light

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

  

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

Insert in HTML

1. Direct symbol:
<span>┒</span>
HTML Code:
<span>&#9490;</span>
HEX Code:
<span>&#x2512;</span>

Add with CSS

.box-drawings-down-heavy-and-left-light::before {
  content: '\\2512';
}

Set it in JavaScript

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