Box Drawings Down Light And Right Heavy

Shortcodes

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

Unicode
U+250D
HTML Code
┍
HEX Code
┍
CSS Code
\250D
JS/JSON
\u250D
Unix/C/PHP/JAVA
0x250D
URL-encode
%E2%94%8D

Customize Box Drawings Down Light And Right Heavy

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

  

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

Insert in HTML

1. Direct symbol:
<span>┍</span>
HTML Code:
<span>&#9485;</span>
HEX Code:
<span>&#x250D;</span>

Add with CSS

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

Set it in JavaScript

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