Box Drawings Vertical Double And Horizontal Single

Shortcodes

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

Unicode
U+256B
Alt Code
215
HTML Code
╫
HEX Code
╫
CSS Code
\256B
JS/JSON
\u256B
Unix/C/PHP/JAVA
0x256B
URL-encode
%E2%95%AB

Customize Box Drawings Vertical Double And Horizontal Single

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

  

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

Insert in HTML

1. Direct symbol:
<span>╫</span>
HTML Code:
<span>&#9579;</span>
HEX Code:
<span>&#x256B;</span>

Add with CSS

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

Set it in JavaScript

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