keecode logokeecode
Home / HTML Entities / Horizontal ellipsis

Horizontal ellipsis

Horizontal ellipsis

Punctuation

HTML Codes

Named Entity

…

Numeric Code

…

Usage Examples

HTML Example (Named Entity)

<p>This is the Horizontal ellipsis: &hellip;</p>

Output: This is the Horizontal ellipsis:

HTML Example (Numeric Code)

<p>This is the Horizontal ellipsis: &#8230;</p>

Output: This is the Horizontal ellipsis:

JavaScript Example

const char = "&hellip;";
console.log(char); // …