Box Drawings Down Heavy And Right Up Light

Shortcodes

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

Unicode
U+251F
HTML Code
┟
HEX Code
┟
CSS Code
\251F
JS/JSON
\u251F
Unix/C/PHP/JAVA
0x251F
URL-encode
%E2%94%9F

Customize Box Drawings Down Heavy And Right Up Light

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

  

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

Insert in HTML

1. Direct symbol:
<span>┟</span>
HTML Code:
<span>&#9503;</span>
HEX Code:
<span>&#x251F;</span>

Add with CSS

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

Set it in JavaScript

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