Box Drawings Double Up And Horizontal

Shortcodes

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

Unicode
U+2569
Alt Code
202
HTML Code
╩
HEX Code
╩
CSS Code
\2569
JS/JSON
\u2569
Unix/C/PHP/JAVA
0x2569
URL-encode
%E2%95%A9

Customize Box Drawings Double Up And Horizontal

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

  

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

Insert in HTML

1. Direct symbol:
<span>╩</span>
HTML Code:
<span>&#9577;</span>
HEX Code:
<span>&#x2569;</span>

Add with CSS

.box-drawings-double-up-and-horizontal::before {
  content: '\\2569';
}

Set it in JavaScript

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