Horizontal Bar

Shortcodes

Copy useful codes for horizontal bar symbol ― to use in websites, apps, blogs, and docs.

Unicode
U+2015
HTML Code
―
HEX Code
―
CSS Code
\2015
JS/JSON
\u2015
Unix/C/PHP/JAVA
0x2015
URL-encode
%E2%80%95

Customize Horizontal Bar

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

  

How to use Horizontal Bar Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>―</span>
HTML Code:
<span>&#8213;</span>
HEX Code:
<span>&#x2015;</span>

Add with CSS

.horizontal-bar::before {
  content: '\\2015';
}

Set it in JavaScript

document.querySelector('.horizontal-bar').textContent = '―';
copied