Box Drawings Light Double Dash Horizontal

Shortcodes

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

Unicode
U+254C
HTML Code
╌
HEX Code
╌
CSS Code
\254C
JS/JSON
\u254C
Unix/C/PHP/JAVA
0x254C
URL-encode
%E2%95%8C

Customize Box Drawings Light Double Dash Horizontal

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

  

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

Insert in HTML

1. Direct symbol:
<span>╌</span>
HTML Code:
<span>&#9548;</span>
HEX Code:
<span>&#x254C;</span>

Add with CSS

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

Set it in JavaScript

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