HTML Entity for Four Dot Punctuation (⁘)

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

What You'll Learn

How to display the Four Dot Punctuation (⁘) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2058 (FOUR DOT PUNCTUATION) in the General Punctuation block (U+2000–U+206F)—a punctuation symbol used in linguistic and formal writing.

Render it with ⁘, ⁘, or CSS escape \2058. There is no named HTML entity. Do not confuse ⁘ with the four dot mark (⁛, U+205B) or the five dot punctuation mark (⁙, U+2059).

⚡ Quick Reference — Four Dot Punctuation

Unicode U+2058

General Punctuation

Hex Code ⁘

Hexadecimal reference

HTML Code ⁘

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2058
Hex code       ⁘
HTML code      ⁘
Named entity   (none)
CSS code       \2058
Meaning        Four-dot punctuation in formal / linguistic text
Related        U+205B = Four dot mark (⁛); U+2059 = Five dot (⁙)
1

Complete HTML Example

This example demonstrates the Four 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: "\2058";
  }
 </style>
</head>
<body>
<p>Four Dot Punctuation using Hexadecimal: &#x2058;</p>
<p>Four Dot Punctuation using HTML Code: &#8280;</p>
<p id="point">Four Dot Punctuation using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Four Dot Punctuation 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 four dot punctuation (⁘) in formal text and compared with related General Punctuation marks:

Chapter divider Chapter I ⁘ Chapter II
Formal notation Lemma ⁘ gloss ⁘ translation
Four-dot family ⁘ punctuation   ⁛ mark
Large glyph
Numeric refs &#x2058; &#8280; \2058

🧠 How It Works

1

Hexadecimal Code

&#x2058; uses the Unicode hexadecimal value 2058 to display the Four Dot Punctuation. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\2058 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+2058 is in General Punctuation. No named HTML entity—use numeric codes in markup.

Use Cases

The Four Dot Punctuation (⁘) is commonly used in:

🔤 Linguistic texts

Language documentation, glossaries, and notation that require specialized punctuation.

📝 Formal writing

Scholarly articles, theses, and publications with formal punctuation conventions.

🌐 Unicode typography

Projects that rely on accurate Unicode character representation.

📄 Documentation

Technical or reference docs that include special punctuation symbols.

🎓 Educational resources

Language and punctuation guides, tutorials, and learning materials.

📋 Section markers

Chapter or section dividers when the four-dot punctuation symbol is semantically appropriate.

💡 Best Practices

Do

  • Add aria-label="four dot punctuation" when the symbol carries meaning
  • Use fonts that support General Punctuation (Segoe UI Symbol, serif stacks)
  • Use the CSS escape in ::before / ::after for repeated dividers
  • Keep hex or decimal encoding consistent within a project
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⁘ (punctuation) with ⁛ (four dot mark) or ⁙ (five dot)
  • Expect a named entity—none exists for U+2058
  • Put CSS escape \2058 in HTML text nodes
  • Use the glyph without context when it conveys linguistic structure
  • Skip cross-browser checks for rare punctuation glyphs

Key Takeaways

1

Two HTML numeric references plus CSS render ⁘

&#x2058; &#8280;
2

For CSS stylesheets, use the escape in the content property

\2058
3

Unicode U+2058 — FOUR DOT PUNCTUATION

4

General Punctuation block (U+2000–U+206F)

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x2058; (hex), &#8280; (decimal), or \2058 in CSS content. There is no named entity.
U+2058 (FOUR DOT PUNCTUATION). General Punctuation block (U+2000–U+206F). Hex 2058, decimal 8280. Used in linguistic and formal punctuation contexts.
In linguistic texts, formal writing, Unicode-based typography, documentation that requires special punctuation, and any content that uses this four-dot punctuation symbol.
HTML references (&#8280; or &#x2058;) go in markup. The CSS escape \2058 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. Symbols in the General Punctuation block like U+2058 use numeric codes (hexadecimal or decimal). This is standard practice for such symbols in HTML.

Explore More HTML Entities!

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