Box Drawings Light Double Dash Vertical

Shortcodes

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

Unicode
U+254E
HTML Code
╎
HEX Code
╎
CSS Code
\254E
JS/JSON
\u254E
Unix/C/PHP/JAVA
0x254E
URL-encode
%E2%95%8E

Customize Box Drawings Light Double Dash Vertical

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

  

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

Insert in HTML

1. Direct symbol:
<span>╎</span>
HTML Code:
<span>&#9550;</span>
HEX Code:
<span>&#x254E;</span>

Add with CSS

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

Set it in JavaScript

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