Box Drawings Heavy Double Dash Vertical

Shortcodes

Copy useful codes for box drawings heavy double dash vertical symbol ╏ to use in websites, apps, blogs, and docs.

Unicode
U+254F
HTML Code
╏
HEX Code
╏
CSS Code
\254F
JS/JSON
\u254F
Unix/C/PHP/JAVA
0x254F
URL-encode
%E2%95%8F

Customize Box Drawings Heavy Double Dash Vertical

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

  

How to use Box Drawings Heavy Double Dash Vertical Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>╏</span>
HTML Code:
<span>&#9551;</span>
HEX Code:
<span>&#x254F;</span>

Add with CSS

.box-drawings-heavy-double-dash-vertical::before {
  content: '\\254F';
}

Set it in JavaScript

document.querySelector('.box-drawings-heavy-double-dash-vertical').textContent = '╏';
copied