Box Drawings Light Triple Dash Horizontal

Shortcodes

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

Unicode
U+2504
HTML Code
┄
HEX Code
┄
CSS Code
\2504
JS/JSON
\u2504
Unix/C/PHP/JAVA
0x2504
URL-encode
%E2%94%84

Customize Box Drawings Light Triple Dash Horizontal

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

  

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

Insert in HTML

1. Direct symbol:
<span>┄</span>
HTML Code:
<span>&#9476;</span>
HEX Code:
<span>&#x2504;</span>

Add with CSS

.box-drawings-light-triple-dash-horizontal::before {
  content: '\\2504';
}

Set it in JavaScript

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