| Symbol Name | Horizontal Ellipsis |
| Unicode Version | 1.1 |
| Unicode | U+2026 |
| Unicode block | |
| General category | Other Punctuation (Po) |
| CSS Code | \2026 |
| Hex Code | 0x2026 |
| HTML Code | … |
| LaTeX | \text{HORIZONTALELLIPSIS} |
| Symbol | … |
| URL encode (UTF-8 percent) | %E2%80%A6 |
| Spoken / screen reader name | Horizontal Ellipsis |
| UTF-8 | E2 80 A6 |
| UTF-16 | 2026 |
| UTF-32 | 00002026 |
1\documentclass{article}2\usepackage{pifont}3\text{HORIZONTALELLIPSIS}4\end{document}You can type the horizontal ellipsis symbol on most modern devices with the help of following methods:
Alt + 8230 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "horizontal ellipsis", or use Unicode Hex Input with 2026.
Ctrl + Shift + U, type 2026, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with geometric symbol support.
1span.horizontal-ellipsis::before { content: "\2026"; }1<span>…</span>Horizontal Ellipsis symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2026' or String.fromCodePoint(8230) |
| Python | '\N{HORIZONTAL ELLIPSIS}' or chr(8230) |
| Rust | '\u{2026}' |
| C / C++ | UTF-8 source or wchar_t with U+2026 |
| Go | string(rune(0x2026)) |
| Ruby | "\u{2026}" |