Box Drawings Heavy Up And Light Down

Shortcodes

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

Unicode
U+257F
HTML Code
╿
HEX Code
╿
CSS Code
\257F
JS/JSON
\u257F
Unix/C/PHP/JAVA
0x257F
URL-encode
%E2%95%BF

Customize Box Drawings Heavy Up And Light Down

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

  

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

Insert in HTML

1. Direct symbol:
<span>╿</span>
HTML Code:
<span>&#9599;</span>
HEX Code:
<span>&#x257F;</span>

Add with CSS

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

Set it in JavaScript

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