Box Drawings Heavy Horizontal

Shortcodes

Copy useful codes for box drawings heavy horizontal symbol ━ to use in websites, apps, blogs, and docs.

Unicode
U+2501
HTML Code
━
HEX Code
━
CSS Code
\2501
JS/JSON
\u2501
Unix/C/PHP/JAVA
0x2501
URL-encode
%E2%94%81

Customize Box Drawings Heavy Horizontal

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

  

How to use Box Drawings Heavy Horizontal Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>━</span>
HTML Code:
<span>&#9473;</span>
HEX Code:
<span>&#x2501;</span>

Add with CSS

.box-drawings-heavy-horizontal::before {
  content: '\\2501';
}

Set it in JavaScript

document.querySelector('.box-drawings-heavy-horizontal').textContent = '━';
copied