Box Drawings Vertical Single And Left Double

Shortcodes

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

Unicode
U+2561
Alt Code
181
HTML Code
╡
HEX Code
╡
CSS Code
\2561
JS/JSON
\u2561
Unix/C/PHP/JAVA
0x2561
URL-encode
%E2%95%A1

Customize Box Drawings Vertical Single And Left Double

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

  

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

Insert in HTML

1. Direct symbol:
<span>╡</span>
HTML Code:
<span>&#9569;</span>
HEX Code:
<span>&#x2561;</span>

Add with CSS

.box-drawings-vertical-single-and-left-double::before {
  content: '\\2561';
}

Set it in JavaScript

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