HTML Entity for Three Dot Punctuation (⁖)

Beginner
⏱️ 5 min read
📚 Updated: Jun 2026
🎯 1 Code Example
Unicode U+2056

What You'll Learn

How to display the Three Dot Punctuation symbol (⁖) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2056 (THREE DOT PUNCTUATION) in the General Punctuation block (U+2000–U+206F)—a triangular three-dot punctuation mark used in typography and formal writing.

Render it with ⁖, ⁖, or CSS escape \2056. There is no named HTML entity. Do not confuse ⁖ with the horizontal ellipsis (…, U+2026, …)—that is three dots in a row, not a triangular mark.

⚡ Quick Reference — Three Dot Punctuation

Unicode U+2056

General Punctuation

Hex Code ⁖

Hexadecimal reference

HTML Code ⁖

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2056
Hex code       ⁖
HTML code      ⁖
Named entity   (none)
CSS code       \2056
Block          General Punctuation (U+2000–U+206F)
Official name  THREE DOT PUNCTUATION
Related        U+2026 = Horizontal Ellipsis (…)
1

Complete HTML Example

This example demonstrates the Three Dot Punctuation symbol (⁖) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2056";
  }
 </style>
</head>
<body>
<p>Using Hexadecimal: &#x2056;</p>
<p>Using HTML Code: &#8278;</p>
<p id="point">Using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Three Dot Punctuation symbol renders in modern browsers when fonts include General Punctuation glyphs:

Chrome 1+
Firefox 1+
Safari 1+
Edge 12+
Opera 4+
Android 4.4+
iOS Safari 1+

👀 Live Preview

See the Three Dot Punctuation symbol (⁖) in typographic context:

Inline text Section marker ⁖ continued below.
Large glyph
vs ellipsis ⁖ three-dot   … horizontal ellipsis
Numeric refs &#x2056; &#8278; \2056

🧠 How It Works

1

Hexadecimal Code

&#x2056; uses the Unicode hexadecimal value 2056 to display the Three Dot Punctuation symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

&#8278; uses the decimal Unicode value 8278 to display the same character.

HTML markup
3

CSS Entity

\2056 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce the glyph: . Unicode U+2056 in the General Punctuation block (U+2000–U+206F). No named entity.

Use Cases

The Three Dot Punctuation symbol (⁖) commonly appears in:

📝 Typography

Editorial design and publishing with specialized punctuation.

📄 Formal Writing

Academic papers and scholarly content with formal notation.

💬 Quotations

Citations and excerpts requiring specific punctuation marks.

🌐 Web Content

Articles and blogs with precise typographic requirements.

📖 Reference Works

Dictionaries, glossaries, and annotated texts.

✎️ Creative Writing

Literature and narrative content with decorative punctuation.

📚 Entity Guides

Punctuation reference pages and character glossaries.

💡 Best Practices

Do

  • Use &#x2056; or &#8278; for this triangular mark
  • Use &hellip; (…) when you need a horizontal ellipsis instead
  • Set charset="UTF-8" on all HTML documents
  • Add spacing around the symbol for readability
  • Test rendering across browsers and font stacks

Don’t

  • Confuse ⁖ (three-dot punctuation) with … (horizontal ellipsis)
  • Substitute three periods (...) for ⁖ when the glyph is required
  • Put CSS escape \2056 directly in HTML text nodes
  • Expect a named HTML entity for U+2056—use numeric references
  • Use HTML entities in JS (use \u2056 instead)

Key Takeaways

1

Two HTML references both render ⁖

&#x2056; &#8278;
2

For CSS stylesheets, use the escape in the content property

\2056
3

Unicode U+2056 — THREE DOT PUNCTUATION

4

No named entity—use numeric references or CSS escape

5

Not the same as horizontal ellipsis … (U+2026, &hellip;)

❓ Frequently Asked Questions

Use &#x2056; (hex), &#8278; (decimal), or \2056 in CSS content. There is no named HTML entity. All three produce ⁖.
U+2056 (THREE DOT PUNCTUATION). General Punctuation block (U+2000–U+206F). Hex 2056, decimal 8278. A triangular three-dot mark, distinct from horizontal ellipsis U+2026 (…).
In typography, formal writing, editorial design, academic papers, quotations, and any content that specifically requires this triangular punctuation mark rather than a standard ellipsis.
HTML numeric references (&#8278; or &#x2056;) go directly in markup. The CSS escape \2056 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover common ASCII, Latin-1, and select symbols. Characters like ⁖ in the General Punctuation block use numeric hex or decimal references—standard practice for specialized punctuation marks.

Explore More HTML Entities!

Discover 1500+ HTML character references — punctuation, typography, and more.

All HTML Entities →

About the author

Mari Selvan M P
Mari Selvan M P 🔗

Developer, cloud engineer, and technical writer

  • Experience 12 years building web and cloud systems
  • Focus Full Stack Development, AWS, and Developer Education

I write practical tutorials so students and working developers can learn by doing—from databases and APIs to deployment on AWS.

8 people found this page helpful