Box Drawings Light Up And Heavy Down

Shortcodes

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

Unicode
U+257D
HTML Code
╽
HEX Code
╽
CSS Code
\257D
JS/JSON
\u257D
Unix/C/PHP/JAVA
0x257D
URL-encode
%E2%95%BD

Customize Box Drawings Light Up And Heavy Down

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

  

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

Insert in HTML

1. Direct symbol:
<span>╽</span>
HTML Code:
<span>&#9597;</span>
HEX Code:
<span>&#x257D;</span>

Add with CSS

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

Set it in JavaScript

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