Box Drawings Vertical Double And Right Single

Shortcodes

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

Unicode
U+255F
Alt Code
199
HTML Code
╟
HEX Code
╟
CSS Code
\255F
JS/JSON
\u255F
Unix/C/PHP/JAVA
0x255F
URL-encode
%E2%95%9F

Customize Box Drawings Vertical Double And Right Single

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

  

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

Insert in HTML

1. Direct symbol:
<span>╟</span>
HTML Code:
<span>&#9567;</span>
HEX Code:
<span>&#x255F;</span>

Add with CSS

.box-drawings-vertical-double-and-right-single::before {
  content: '\\255F';
}

Set it in JavaScript

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