Box Drawings Double Down And Horizontal

Shortcodes

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

Unicode
U+2566
Alt Code
203
HTML Code
╦
HEX Code
╦
CSS Code
\2566
JS/JSON
\u2566
Unix/C/PHP/JAVA
0x2566
URL-encode
%E2%95%A6

Customize Box Drawings Double Down And Horizontal

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

  

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

Insert in HTML

1. Direct symbol:
<span>╦</span>
HTML Code:
<span>&#9574;</span>
HEX Code:
<span>&#x2566;</span>

Add with CSS

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

Set it in JavaScript

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