HTML Entity for Four Dot Mark (⁛)

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

What You'll Learn

How to display the Four Dot Mark (⁛) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+205B (FOUR DOT MARK) in the General Punctuation block (U+2000–U+206F)—a punctuation symbol used in linguistic and academic notation.

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

⚡ Quick Reference — Four Dot Mark

Unicode U+205B

General Punctuation

Hex Code ⁛

Hexadecimal reference

HTML Code ⁛

Decimal reference

Named Entity

Use numeric codes only

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

Complete HTML Example

This example demonstrates the Four Dot Mark (⁛) 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: "\205B";
  }
 </style>
</head>
<body>
<p>Four Dot Mark using Hexadecimal: &#x205B;</p>
<p>Four Dot Mark using HTML Code: &#8283;</p>
<p id="point">Four Dot Mark using CSS Entity: </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The Four Dot Mark 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 mark (⁛) in punctuation and compared with related General Punctuation marks:

Section divider Section A ⁛ Section B
Inline notation Lemma ⁛ gloss ⁛ translation
Dot marks ⁕ flower   ⁛ four   ⁙ five
Large glyph
Numeric refs &#x205B; &#8283; \205B

🧠 How It Works

1

Hexadecimal Code

&#x205B; uses the Unicode hexadecimal value 205B to display the Four Dot Mark. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

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

Use Cases

The Four Dot Mark (⁛) is commonly used in:

📚 Academic writing

Papers, theses, and scholarly content that use specialized punctuation notation.

🔤 Linguistic content

Phonetics, morphology, and language documentation that require this symbol.

🌐 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.

📋 List or section markers

Custom markers and dividers when the four-dot symbol is semantically appropriate.

💡 Best Practices

Do

  • Add aria-label="four dot mark" 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 markers
  • Keep hex or decimal encoding consistent within a project
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Confuse ⁛ (four dot) with ⁙ (five dot) or ⁕ (flower punctuation)
  • Expect a named entity—none exists for U+205B
  • Put CSS escape \205B in HTML text nodes
  • Use the glyph alone 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 ⁛

&#x205B; &#8283;
2

For CSS stylesheets, use the escape in the content property

\205B
3

Unicode U+205B — FOUR DOT MARK

4

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

5

Three methods, no named HTML entity

❓ Frequently Asked Questions

Use &#x205B; (hex), &#8283; (decimal), or \205B in CSS content. There is no named entity.
U+205B (FOUR DOT MARK). General Punctuation block (U+2000–U+206F). Hex 205B, decimal 8283. Used in linguistic and punctuation contexts.
In academic writing, linguistic content and notation, Unicode-based typography projects, documentation that requires special punctuation, and any content that uses this four-dot punctuation symbol.
HTML references (&#8283; or &#x205B;) go in markup. The CSS escape \205B 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+205B 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