HTML Entity for Five Dot Punctuation (⁙)

Beginner
5 min read
Updated: Sep 2026
1 example
Unicode U+2059

What Is Five Dot Punctuation?

Five-dot punctuation (⁙) is the Unicode character at U+2059 in General Punctuation. Official name: FIVE DOT PUNCTUATION. It is five dots in a quincunx pattern (like the five on a die face) used as a rare punctuation mark.

Remember
Character     ⁙
Unicode       U+2059
Hex entity    ⁙
Decimal       ⁙
CSS escape    \2059
Named entity  (none)
Not the same  ⁘ (four) · ⁖ (three) · … (ellipsis)

Prefer ⁙ or ⁙ in HTML (no named form). You can also type ⁙ in a UTF-8 document.

Quick Reference

One table for every form you will actually use.

FormCodeWhere it goes
Named entityNone—
Hex entity⁙HTML markup (preferred)
Decimal entity⁙HTML markup
Direct character⁙HTML text (UTF-8)
CSS escape\2059Stylesheet content

When to Use Which

SituationUse
Five-dot / quincunx punctuation⁙ or type ⁙
Four-dot punctuationFour-dot (⁘)
Three-dot punctuationThree-dot (⁖)
Omitted text / trailing offEllipsis (…, …)
Generated text via ::before / ::aftercontent: "\2059"

Live Preview

Symbol rendered alone, in sample text, and compared with related dot marks.

Glyph ⁙
Large glyph ⁙
Sample Section ends ⁙
Compared ⁙   ⁘   ⁖   …
With entities Hex: ⁙ | Decimal: ⁙

Complete HTML Example

One page that shows Five-dot punctuation with hex, decimal, CSS escape, and a typed character. Use View Output or open the live editor.

Hex + Decimal + CSS + Typed

Four ways to display ⁙ in HTML and CSS.

html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Five Dot Punctuation (U+2059) in HTML</title>
  <style>
    #point::after {
      content: "\2059";
    }
  </style>
</head>
<body>
  <p>Built with Hex: &#x2059;</p>
  <p>Built with Decimal: &#8281;</p>
  <p id="point">Built with CSS: </p>
  <p>Typed: ⁙</p>
  <p>Section ends &#x2059;</p>
</body>
</html>
Try It Yourself

How It Works

1. Hex: &#x2059; inserts code point U+2059 → ⁙.

2. Decimal: same code point as 8281 → &#8281;. Same visual as hex.

3. CSS: use \2059 in content (not an HTML entity). #point::after appends ⁙.

4. Typed: paste ⁙ in a UTF-8 document, or place it as a decorative end mark.

Pitfalls & Tips

Common mistakes when working with Five-dot punctuation.

Name

No named entity

There is no HTML5 named entity for U+2059. Use &#x2059; or &#8281;. Do not invent &fivedot;.

…

Not an ellipsis

U+2026 (&hellip;) means omitted text. Five-dot punctuation is a different mark with five dots in a quincunx.

⁘

Not four-dot punctuation

U+2058 (⁘) has four dots. Count carefully when choosing among the multi-dot punctuation characters.

Font

Font coverage

U+2059 may be missing in some fonts. Prefer a font with General Punctuation coverage, or fall back to another mark / SVG if needed.

CSS vs HTML

Do not mix escapes

\2059 belongs in CSS strings. &#x2059; / &#8281; belong in HTML.

a11y

Add accessible text

Screen readers may not announce ⁙ clearly. Prefer nearby prose when the mark carries meaning.

Semicolon

End references

Always finish entities with ; — write &#x2059;, not &#x2059.

Browser Support

Five-dot punctuation (U+2059) and its entity forms (&#x2059;, &#8281;, CSS \\2059) are supported in all mainstream browsers. Visible glyphs depend on General Punctuation font coverage.

✓ Universal support

Five Dot Punctuation (&#x2059;)

Encode with hex, decimal, CSS escape, or type the character — same code point everywhere encoding is supported.

100% Browser coverage
Google Chrome Supported
Yes
Microsoft Edge Supported
Yes
Mozilla Firefox Supported
Yes
Apple Safari Supported
Yes
Opera Supported
Yes
Internet Explorer All versions
Yes
U+2059 Full support

Bottom line: Prefer &#x2059; in HTML (no named form). Use &#8281; when decimal form is required, and \\2059 only inside CSS content.

Key Takeaways

  • Unicode: five-dot punctuation is U+2059 (decimal 8281) — glyph ⁙.
  • HTML: no named entity — use &#x2059; / &#8281; / type ⁙.
  • CSS: use \2059 inside content for generated text.
  • Meaning: ⁙ ≠ four-dot ⁘ ≠ three-dot ⁖ ≠ ellipsis ….

One line: U+2059 → &#x2059; / &#8281; / CSS \2059 (no named form).

Frequently Asked Questions

Use &#x2059; (hex), &#8281; (decimal), type ⁙ directly in UTF-8, or the CSS escape \2059 in content. There is no named HTML entity for U+2059.
U+2059 (FIVE DOT PUNCTUATION). Hex 2059, decimal 8281. It belongs to the General Punctuation block (U+2000–U+206F).
No. HTML5 does not define a named entity for U+2059. Prefer &#x2059; or &#8281;.
Use it for scholarly, poetic, or decorative punctuation that needs five dots in a quincunx. Prefer ellipsis (&hellip;) for omitted text, and three-/four-dot punctuation when those specific marks are required.
HTML numeric entities (&#8281; or &#x2059;) go in markup. The CSS escape \2059 goes in stylesheet strings (usually content on ::before/::after).
No. U+2059 is ⁙ (five-dot punctuation). Ellipsis is U+2026 (…, &hellip;). Four-dot punctuation is U+2058 (⁘).

Did you know?

Five-dot punctuation is Unicode U+2059 (decimal 8281) — glyph ⁙ (FIVE DOT PUNCTUATION) in General Punctuation. There is no HTML5 named entity; use &#x2059; or &#8281;. It is a quincunx of five dots. Do not confuse it with four-dot (⁘), three-dot (⁖), or ellipsis (&hellip;, …).

Next: Fleur de Lis

Learn the HTML entity for fleur-de-lis (U+269C).

Fleur-de-lis tutorial →

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