| Symboolnaam | Horizontal Ellipsis |
| Unicode-versie | 1.1 |
| Unicode | U+2026 |
| Unicode-blok | |
| Algemene categorie | Other Punctuation (Po) |
| CSS-code | \2026 |
| Hexadecimale code | 0x2026 |
| HTML-code | … |
| LaTeX | \text{HORIZONTALELLIPSIS} |
| Symbool | … |
| URL-codering (UTF-8 procent) | %E2%80%A6 |
| Uitgesproken naam / schermlezer | 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}Je kunt het horizontal ellipsis-symbool op de meeste moderne apparaten typen met de volgende methoden:
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>De weergave van het Horizontal Ellipsis-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| 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}" |