HTML Entity for Two Dot Punctuation (⁚)

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

What You'll Learn

How to display Two Dot Punctuation (⁚) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+205A (TWO DOT PUNCTUATION) in the General Punctuation block (U+2000–U+206F)—a specialized punctuation mark used in linguistic content, typographic formatting, and editorial contexts.

Render it with ⁚, ⁚, or CSS escape \205A. There is no named HTML entity for this symbol. Compare ‥ (two dot leader, U+2025, ‥) or ⁘ (four dot punctuation, U+2058) for related punctuation characters.

⚡ Quick Reference — Two Dot Punctuation

Unicode U+205A

General Punctuation block

Hex Code ⁚

Hexadecimal reference

HTML Code ⁚

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+205A
Hex code       ⁚
HTML code      ⁚
Named entity   (none)
CSS code       \205A
Related        U+2025 = two dot leader (‥, ‥)
               U+2058 = four dot punctuation (⁘)
Block          General Punctuation (U+2000–U+206F)
1

Complete HTML Example

A simple example showing ⁚ using hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\205A";
  }
 </style>
</head>
<body>
<p>Two Dot Punctuation (hex): &#x205A;</p>
<p>Two Dot Punctuation (decimal): &#8282;</p>
<p id="point">Two Dot Punctuation (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+205A is supported in modern browsers when rendered with a font that includes General Punctuation characters:

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

👀 Live Preview

See Two Dot Punctuation (⁚) in linguistic and typographic contexts:

Large glyph
Linguistic ⁚ Specialized punctuation mark
Editorial ⁚ Typographic formatting
Academic ⁚ Scholarly notation
Numeric refs &#x205A; &#8282;

🧠 How It Works

1

Hexadecimal Code

&#x205A; uses the Unicode hexadecimal value 205A to display Two Dot Punctuation. The x prefix indicates hexadecimal format.

HTML markup
2

Decimal HTML Code

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

HTML markup
3

CSS Entity

\205A 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: . Unicode U+205A in the General Punctuation block (U+2000–U+206F). No named HTML entity—use numeric codes in markup. Serve HTML as UTF-8.

Use Cases

Two Dot Punctuation (⁚) is commonly used in:

📝 Linguistic content

Language studies, philology, and specialized linguistic notation.

📄 Typographic formatting

Editorial content and professional typesetting with precise punctuation.

📖 Academic writing

Scholarly publications and research documents needing unique marks.

📝 Editorial content

Publishing projects and professional writing with typographic precision.

🎨 Creative typography

Artistic text and design work with unique punctuation elements.

📚 Education

Language tutorials and punctuation reference guides.

💡 Best Practices

Do

  • Use &#x205A; or &#8282; consistently in markup
  • Use fonts that support General Punctuation (system UI, Segoe UI, Cambria)
  • Add aria-label or surrounding text for screen reader context
  • Pair ⁚ with visible explanatory text in linguistic and editorial content
  • Serve pages with UTF-8 (<meta charset="utf-8">)

Don’t

  • Expect a named entity—none exists for U+205A
  • Confuse ⁚ (two dot punctuation) with ‥ (two dot leader U+2025, &nldr;)
  • Use U+0205A or CSS \0205A—the correct value is U+205A and \205A
  • Put CSS escape \205A in HTML text nodes
  • Assume all decorative fonts include General Punctuation characters

Key Takeaways

1

Two HTML numeric references render ⁚

&#x205A; &#8282;
2

For CSS stylesheets, use the escape in the content property

\205A
3

Unicode U+205A — TWO DOT PUNCTUATION

4

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

5

Three methods, one glyph — no named HTML entity

❓ Frequently Asked Questions

Use &#x205A; (hex), &#8282; (decimal), or \205A in CSS content. There is no named entity. All produce ⁚.
U+205A (TWO DOT PUNCTUATION). General Punctuation block (U+2000–U+206F). Hex 205A, decimal 8282. A specialized punctuation mark used in linguistic and typographic contexts.
In linguistic content, typographic formatting, specialized punctuation, editorial content, academic writing, and any content that requires precise typographic punctuation marks.
HTML references (&#8282; or &#x205A;) go in markup. The CSS escape \205A is used in stylesheets, typically in the content property of pseudo-elements. Same visual result, different layers of the stack.
Named entities cover common ASCII, Latin-1, and frequently used symbols. Many General Punctuation characters including U+205A have no named entity—use &#x205A; or &#8282; in HTML.

Explore More HTML Entities!

Discover 1500+ HTML character references — punctuation, symbols, math operators, 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