Box Drawings Down Heavy And Right Light

Shortcodes

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

Unicode
U+250E
HTML Code
┎
HEX Code
┎
CSS Code
\250E
JS/JSON
\u250E
Unix/C/PHP/JAVA
0x250E
URL-encode
%E2%94%8E

Customize Box Drawings Down Heavy And Right Light

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

  

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

Insert in HTML

1. Direct symbol:
<span>┎</span>
HTML Code:
<span>&#9486;</span>
HEX Code:
<span>&#x250E;</span>

Add with CSS

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

Set it in JavaScript

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