Typography & Punctuation

Horizontal Ellipsis ()

A single typographical glyph containing three evenly spaced dots, preferred over three consecutive periods (...) for optimal kerning.

One-Click Copyable Code Formats

HTML Named Entity
…
HTML Decimal Code
…
HTML Hex Code
…
CSS content (\XXXX)
\2026
JavaScript Unicode (\uXXXX)
\u2026
URL Percent Encoded
%E2%80%A6

Real-World Implementation Snippets

HTML5 Document
<p>Example: &hellip;</p>
CSS ::before / ::after
.badge::before { content: '\2026 '; }
React JSX / TypeScript
<span>{"\u2026"}</span>
Frequently Asked Questions

Horizontal Ellipsis (…) HTML Entity FAQ

Common questions regarding HTML escape codes, CSS pseudo-elements, and browser character encoding.

The standard HTML named entity is "&hellip;". If using numeric codes, you can use the decimal code "&#8230;" or hex code "&#x2026;".