Horizontal Ellipsis

Shortcodes

Copy and paste codes for Horizontal Ellipsis symbol … to use in your websites, apps, blogs, and more.

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
copied

Customize Horizontal Ellipsis Symbol

Customize … symbol as you like and download Horizontal Ellipsis as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.
 

How to type Horizontal Ellipsis symbol … ?

Using Horizontal Ellipsis Alt Code:

You can type the Horizontal Ellipsis symbol … using your keyboard by using the Alt Code for Horizontal Ellipsis. Before you begin, ensure that your Num Lock is turned on, and use the Numpad to type the code. Then, follow these simple steps:

  1. Hold down the Alt key on your keyboard.
  2. Type the number 0133 using the Numpad.
  3. Release the Alt key.

This will make the … appear on your screen.

How to add Horizontal Ellipsis symbol in HTML, CSS, and JS?

Insert … Horizontal Ellipsis using HTML

1. Copy-paste Horizontal Ellipsis directly:
<span>…</span>
2. HTML Decimal Code:
<span>&#8230;</span>
3. HTML Entity:
<span>&hellip;</span>
4. Hexadecimal Code:
<span>&#x2026;</span>
Preview:

Add Horizontal Ellipsis symbol with CSS

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

Horizontal Ellipsis JavaScript Code

1. Direct Symbol:
document.querySelector('.horizontal-ellipsis').textContent = '…';
2. Unicode Escape for …:
document.querySelector('.horizontal-ellipsis').textContent = '\u2026';
Preview: