HTML Entity for Tricolon (⁝)

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

What You'll Learn

How to display the Tricolon (⁝) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+205D (TRICOLON) in the General Punctuation block (U+2000–U+206F)—a vertical three-dot punctuation mark used in classical texts, typography, and specialized editorial design.

Render it with ⁝, ⁝, or CSS escape \205D. There is no named HTML entity. Do not confuse ⁝ with U+2056 (⁖, three dot punctuation) or U+2026 (…, horizontal ellipsis / …).

⚡ Quick Reference — Tricolon

Unicode U+205D

General Punctuation

Hex Code ⁝

Hexadecimal reference

HTML Code ⁝

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+205D
Hex code       ⁝
HTML code      ⁝
Named entity   (none)
CSS code       \205D
Block          General Punctuation (U+2000–U+206F)
Official name  TRICOLON
Related        U+2056 = three dot punctuation (⁖), U+2026 = ellipsis (…)
1

Complete HTML Example

This example demonstrates the Tricolon (⁝) using hexadecimal code, decimal HTML code, and a CSS content escape (no named entity):

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

🌐 Browser Support

The Tricolon 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 Tricolon (⁝) in typographic context:

Section marker ⁝ Continued in the next passage.
Large glyph
Compare ⁝ tricolon (vertical)  |  ⁖ three-dot  |  … ellipsis
Numeric refs &#x205D; &#8285; \205D

🧠 How It Works

1

Hexadecimal Code

&#x205D; uses the Unicode hexadecimal value 205D to display the Tricolon symbol.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\205D is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All three methods produce . Unicode U+205D in General Punctuation. No named entity. Previous: Triangular Bullet. Next: Trigram Earth.

Use Cases

The Tricolon (⁝) commonly appears in:

📜 Classical Texts

Historical documents and traditional punctuation marks.

📝 Typography

Editorial design and specialized typographic projects.

🎨 Design

Creative layouts and decorative punctuation elements.

📄 Academic Content

Scholarly papers and research requiring traditional marks.

📚 Education

Typography tutorials and punctuation reference material.

💬 Punctuation

Specialized marks distinct from ellipsis or bullets.

🎨 Creative Projects

Artistic content and design showcases.

💡 Best Practices

Do

  • Use &#x205D; or &#8285; for the vertical tricolon mark
  • Distinguish ⁝ from horizontal ellipsis and triangular three-dot marks
  • Choose fonts with General Punctuation coverage
  • Add context or accessible text when the symbol carries editorial meaning
  • Test rendering across browsers and font stacks

Don’t

  • Confuse ⁝ (tricolon) with ⁖ (three dot punctuation) or … (ellipsis)
  • Substitute three stacked periods for ⁝ when the glyph is required
  • Put CSS escape \205D directly in HTML text nodes
  • Expect a named HTML entity for U+205D
  • Use HTML entities in JS (use \u205D instead)

Key Takeaways

1

Two HTML references both render ⁝

&#x205D; &#8285;
2

For CSS stylesheets, use the escape in the content property

\205D
3

Unicode U+205D — TRICOLON (vertical three dots)

4

No named entity—use numeric references or CSS escape

5

General Punctuation block (U+2000–U+206F) for typographic marks

❓ Frequently Asked Questions

Use &#x205D; (hex), &#8285; (decimal), or \205D in CSS content. There is no named HTML entity. All three produce ⁝.
U+205D (TRICOLON). General Punctuation block (U+2000–U+206F). Hex 205D, decimal 8285. Three vertically stacked dots used as a punctuation mark.
For classical texts, typography, design, specialized punctuation, academic content, and any material requiring the vertical three-dot tricolon mark.
HTML numeric references (&#8285; or &#x205D;) go directly in markup. The CSS escape \205D 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. General Punctuation characters like ⁝ use numeric hex or decimal references—standard practice for specialized punctuation marks.

Explore More HTML Entities!

Discover 1500+ HTML character references — punctuation, symbols, 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