Box Drawings Vertical Single And Horizontal Double

Shortcodes

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

Unicode
U+256A
Alt Code
216
HTML Code
╪
HEX Code
╪
CSS Code
\256A
JS/JSON
\u256A
Unix/C/PHP/JAVA
0x256A
URL-encode
%E2%95%AA

Customize Box Drawings Vertical Single And Horizontal Double

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

  

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

Insert in HTML

1. Direct symbol:
<span>╪</span>
HTML Code:
<span>&#9578;</span>
HEX Code:
<span>&#x256A;</span>

Add with CSS

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

Set it in JavaScript

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