HTML Entity for Five Dot Punctuation (⁙)

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

What You'll Learn

How to display the Five dot punctuation symbol (⁙) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2059 (FIVE DOT PUNCTUATION) in the General Punctuation block (U+2000–U+206F)—five dots arranged in a quincunx (cross) pattern, used in linguistic, scholarly, and decorative contexts.

Render it with ⁙, ⁙, or CSS escape \2059. There is no named HTML entity. Do not confuse ⁙ with the ellipsis (…, U+2026) or the horizontal ellipsis character used for omission.

⚡ Quick Reference — Five Dot Punctuation

Unicode U+2059

General Punctuation

Hex Code ⁙

Hexadecimal reference

HTML Code ⁙

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2059
Hex code       ⁙
HTML code      ⁙
Named entity   (none)
CSS code       \2059
Meaning        Five dots in quincunx pattern
Related        U+2026 = Ellipsis (…); U+2012 = Figure dash (‒)
1

Complete HTML Example

This example demonstrates the Five dot punctuation (⁙) using hexadecimal code, decimal HTML code, and a CSS content escape. There is no named HTML entity:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point:after{
   content: "\2059";
  }
 </style>
</head>
<body>
<p>Five Dot Punctuation using Hexadecimal: &#x2059;</p>
<p>Five Dot Punctuation using HTML Code: &#8281;</p>
<p id="point">Five Dot Punctuation using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Five dot punctuation symbol is widely supported in modern browsers with a suitable font:

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

👀 Live Preview

See the five dot punctuation (⁙) as a separator and compared with ellipsis:

Section break Chapter I ⁙ Chapter II
List style ⁙ First item ⁙ Second item
vs ellipsis five-dot ⁙   vs   ellipsis …
Large glyph
Numeric refs &#x2059; &#8281; \2059

🧠 How It Works

1

Hexadecimal Code

&#x2059; uses the Unicode hexadecimal value 2059 to display the Five dot punctuation symbol. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2059 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+2059 is in General Punctuation. Also called the five dot mark or quincunx. No named HTML entity.

Use Cases

The Five dot punctuation symbol (⁙) is commonly used in:

📚 Scholarly text

Reproduce historical or scholarly punctuation in editions, transcriptions, and linguistics.

📋 Lists & separators

Distinct list separators or bullet alternatives (⁙ item one ⁙ item two).

✨ Decorative punctuation

Visual interest in headings, dividers, or decorative text blocks.

📜 Historical texts

Faithfully represent punctuation in digitized classical or historical documents.

🔤 Typography

Five-dot character for typographic or design consistency in specialized layouts.

📄 Citations

Certain citation or reference formats that use this character as a separator.

💡 Best Practices

Do

  • Add aria-label="five dot punctuation" when the symbol carries meaning
  • Use ⁙ when you need exactly five dots in a quincunx pattern
  • Ensure fonts support General Punctuation (U+2059)
  • Use &#x2059; or &#8281; consistently within a project
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⁙ (five dot) with … (ellipsis) for trailing omission
  • Expect a named entity—none exists for U+2059
  • Put CSS escape \2059 in HTML text nodes
  • Use the symbol decoratively without accessible text when it conveys structure
  • Mix entity styles randomly in one file

Key Takeaways

1

Two HTML numeric references plus CSS render ⁙

&#x2059; &#8281;
2

For CSS stylesheets, use the escape in the content property

\2059
3

Unicode U+2059 — FIVE DOT PUNCTUATION

4

General Punctuation block; quincunx (five-dot) pattern

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x2059; (hex), &#8281; (decimal), or \2059 in CSS content. There is no named entity.
U+2059 (FIVE DOT PUNCTUATION). General Punctuation block (U+2000–U+206F). Hex 2059, decimal 8281. Five dots in a quincunx (cross) pattern.
In linguistic and scholarly text, lists and bullet-style formatting, decorative punctuation, historical and classical text reproduction, and any content requiring this specific five-dot character.
HTML references (&#8281; or &#x2059;) go in markup. The CSS escape \2059 is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named HTML entities cover a subset of common characters. U+2059 is in the General Punctuation block and uses numeric codes (hexadecimal or decimal). This is standard practice for such punctuation in HTML.

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