Box Drawings Down Single And Horizontal Double

Shortcodes

Copy useful codes for box drawings down single and horizontal double symbol ╤ to use in websites, apps, blogs, and docs.

Unicode
U+2564
Alt Code
209
HTML Code
╤
HEX Code
╤
CSS Code
\2564
JS/JSON
\u2564
Unix/C/PHP/JAVA
0x2564
URL-encode
%E2%95%A4

Customize Box Drawings Down Single And Horizontal Double

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

  

How to use Box Drawings Down Single And Horizontal Double Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>╤</span>
HTML Code:
<span>&#9572;</span>
HEX Code:
<span>&#x2564;</span>

Add with CSS

.box-drawings-down-single-and-horizontal-double::before {
  content: '\\2564';
}

Set it in JavaScript

document.querySelector('.box-drawings-down-single-and-horizontal-double').textContent = '╤';
copied