Box Drawings Double Vertical And Horizontal

Shortcodes

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

Unicode
U+256C
Alt Code
206
HTML Code
╬
HEX Code
╬
CSS Code
\256C
JS/JSON
\u256C
Unix/C/PHP/JAVA
0x256C
URL-encode
%E2%95%AC

Customize Box Drawings Double Vertical And Horizontal

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

  

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

Insert in HTML

1. Direct symbol:
<span>╬</span>
HTML Code:
<span>&#9580;</span>
HEX Code:
<span>&#x256C;</span>

Add with CSS

.box-drawings-double-vertical-and-horizontal::before {
  content: '\\256C';
}

Set it in JavaScript

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