Box Drawings Light Horizontal

Shortcodes

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

Unicode
U+2500
Alt Code
196
HTML Code
─
HEX Code
─
CSS Code
\2500
JS/JSON
\u2500
Unix/C/PHP/JAVA
0x2500
URL-encode
%E2%94%80

Customize Box Drawings Light Horizontal

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

  

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

Insert in HTML

1. Direct symbol:
<span>─</span>
HTML Code:
<span>&#9472;</span>
HEX Code:
<span>&#x2500;</span>

Add with CSS

.box-drawings-light-horizontal::before {
  content: '\\2500';
}

Set it in JavaScript

document.querySelector('.box-drawings-light-horizontal').textContent = '─';
copied