HTML Entity for Five Dot Punctuation (⁙)

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
U+2059General Punctuation
⁙Hexadecimal reference
⁙Decimal reference
—Use numeric codes only
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 (‒)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:
<!DOCTYPE html>
<html>
<head>
<style>
#point:after{
content: "\2059";
}
</style>
</head>
<body>
<p>Five Dot Punctuation using Hexadecimal: ⁙</p>
<p>Five Dot Punctuation using HTML Code: ⁙</p>
<p id="point">Five Dot Punctuation using CSS Entity: </p>
</body>
</html>🌐 Browser Support
The Five dot punctuation symbol is widely supported in modern browsers with a suitable font:
👀 Live Preview
See the five dot punctuation (⁙) as a separator and compared with ellipsis:
🧠 How It Works
Hexadecimal Code
⁙ uses the Unicode hexadecimal value 2059 to display the Five dot punctuation symbol. The x prefix indicates hexadecimal format.
Decimal HTML Code
⁙ uses the decimal Unicode value 8281 to display the same character.
CSS Entity
\2059 is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Reproduce historical or scholarly punctuation in editions, transcriptions, and linguistics.
Distinct list separators or bullet alternatives (⁙ item one ⁙ item two).
Visual interest in headings, dividers, or decorative text blocks.
Faithfully represent punctuation in digitized classical or historical documents.
Five-dot character for typographic or design consistency in specialized layouts.
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
⁙or⁙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
\2059in HTML text nodes - Use the symbol decoratively without accessible text when it conveys structure
- Mix entity styles randomly in one file
Key Takeaways
Two HTML numeric references plus CSS render ⁙
⁙ ⁙For CSS stylesheets, use the escape in the content property
\2059Unicode U+2059 — FIVE DOT PUNCTUATION
General Punctuation block; quincunx (five-dot) pattern
Three methods, no named HTML entity
❓ Frequently Asked Questions
⁙ (hex), ⁙ (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.⁙ or ⁙) 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.Explore More HTML Entities!
Discover 1500+ HTML character references — punctuation, symbols, and more.
8 people found this page helpful
