Box Drawings Double Vertical And Right

Shortcodes

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

Unicode
U+2560
Alt Code
204
HTML Code
╠
HEX Code
╠
CSS Code
\2560
JS/JSON
\u2560
Unix/C/PHP/JAVA
0x2560
URL-encode
%E2%95%A0

Customize Box Drawings Double Vertical And Right

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

  

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

Insert in HTML

1. Direct symbol:
<span>╠</span>
HTML Code:
<span>&#9568;</span>
HEX Code:
<span>&#x2560;</span>

Add with CSS

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

Set it in JavaScript

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