Horizontal Ellipsis

Shortcodes

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

Unicode
U+2026
Alt Code
0133
HTML Code
…
HTML Entity
…
HEX Code
…
CSS Code
\2026
JS/JSON
\u2026
Unix/C/PHP/JAVA
0x2026
URL-encode
%E2%80%A6

Customize Horizontal Ellipsis

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

  

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

Insert in HTML

1. Direct symbol:
<span>…</span>
HTML Code:
<span>&#8230;</span>
HTML Entity:
<span>&hellip;</span>
HEX Code:
<span>&#x2026;</span>

Add with CSS

.horizontal-ellipsis::before {
  content: '\\2026';
}

Set it in JavaScript

document.querySelector('.horizontal-ellipsis').textContent = '…';
copied