Box Drawings Heavy Up

Shortcodes

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

Unicode
U+2579
HTML Code
╹
HEX Code
╹
CSS Code
\2579
JS/JSON
\u2579
Unix/C/PHP/JAVA
0x2579
URL-encode
%E2%95%B9

Customize Box Drawings Heavy Up

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

  

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

Insert in HTML

1. Direct symbol:
<span>╹</span>
HTML Code:
<span>&#9593;</span>
HEX Code:
<span>&#x2579;</span>

Add with CSS

.box-drawings-heavy-up::before {
  content: '\\2579';
}

Set it in JavaScript

document.querySelector('.box-drawings-heavy-up').textContent = '╹';
copied