HORIZONTAL ELLIPSIS vs MIDLINE HORIZONTAL ELLIPSIS
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://unicodefyi.com/iframe/entity//" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://unicodefyi.com/entity//
Add a dynamic SVG badge to your README or docs.
[](https://unicodefyi.com/entity//)
Use the native HTML custom element.
copied1 = false, 2000)"
:class="copied1 ? 'border-green-400 bg-green-50 dark:bg-green-950' : ''">
…
HORIZONTAL ELLIPSIS
U+2026
View details →
copied2 = false, 2000)"
:class="copied2 ? 'border-green-400 bg-green-50 dark:bg-green-950' : ''">
⋯
MIDLINE HORIZONTAL ELLIPSIS
U+22EF
View details →
VS
Property Comparison
| Property | … U+2026 | ⋯ U+22EF |
|---|---|---|
| Name | HORIZONTAL ELLIPSIS | MIDLINE HORIZONTAL ELLIPSIS |
| Block | General Punctuation | Mathematical Operators |
| Script | Zyyy | Zyyy |
| Category | Other Punctuation (Po) | Math Symbol (Sm) |
| Bidirectional | ON | ON |
Encoding Comparison
| Format | U+2026 | U+22EF |
|---|---|---|
| unicode | U+2026 | U+22EF |
| decimal | 8230 | 8943 |
| htmldecimal | … | ⋯ |
| htmlhex | … | ⋯ |
| css | \2026 | \22EF |
| javascript | \u{2026} | \u{22EF} |
| python | \u2026 | \u22ef |
| java | \u2026 | \u22EF |
| go | \u2026 | \u22EF |
| ruby | \u{2026} | \u{22EF} |
| rust | \u{2026} | \u{22EF} |
| ccpp | \u2026 | \u22ef |
| urlencoded | %E2%80%A6 | %E2%8B%AF |
| utf8bytes | e2 80 a6 | e2 8b af |
| utf16bebytes | 20 26 | 22 ef |
| utf32bebytes | 00 00 20 26 | 00 00 22 ef |
| htmlentity | … |
How to Distinguish
Both characters use the Zyyy script but are in different blocks: HORIZONTAL ELLIPSIS in General Punctuation and MIDLINE HORIZONTAL ELLIPSIS in Mathematical Operators.
Tip: Paste the character into a hex editor or use
charCodeAt()
in JavaScript to check the actual codepoint.