Box Drawings Down Light And Right Up Heavy

Shortcodes

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

Unicode
U+2521
HTML Code
┡
HEX Code
┡
CSS Code
\2521
JS/JSON
\u2521
Unix/C/PHP/JAVA
0x2521
URL-encode
%E2%94%A1

Customize Box Drawings Down Light And Right Up Heavy

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

  

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

Insert in HTML

1. Direct symbol:
<span>┡</span>
HTML Code:
<span>&#9505;</span>
HEX Code:
<span>&#x2521;</span>

Add with CSS

.box-drawings-down-light-and-right-up-heavy::before {
  content: '\\2521';
}

Set it in JavaScript

document.querySelector('.box-drawings-down-light-and-right-up-heavy').textContent = '┡';
copied