HTML Entity for Two Dot Punctuation (⁚)

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
U+205AGeneral Punctuation block
⁚Hexadecimal reference
⁚Decimal reference
—Use numeric codes only
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)Complete HTML Example
A simple example showing ⁚ using hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\205A";
}
</style>
</head>
<body>
<p>Two Dot Punctuation (hex): ⁚</p>
<p>Two Dot Punctuation (decimal): ⁚</p>
<p id="point">Two Dot Punctuation (CSS): </p>
</body>
</html>🌐 Browser Support
U+205A is supported in modern browsers when rendered with a font that includes General Punctuation characters:
👀 Live Preview
See Two Dot Punctuation (⁚) in linguistic and typographic contexts:
🧠 How It Works
Hexadecimal Code
⁚ uses the Unicode hexadecimal value 205A to display Two Dot Punctuation. The x prefix indicates hexadecimal format.
Decimal HTML Code
⁚ uses the decimal Unicode value 8282 to display the same character.
CSS Entity
\205A is used in CSS stylesheets, particularly in the content property of pseudo-elements like ::before and ::after.
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:
Language studies, philology, and specialized linguistic notation.
Editorial content and professional typesetting with precise punctuation.
Scholarly publications and research documents needing unique marks.
Publishing projects and professional writing with typographic precision.
Artistic text and design work with unique punctuation elements.
Language tutorials and punctuation reference guides.
💡 Best Practices
Do
- Use
⁚or⁚consistently in markup - Use fonts that support General Punctuation (system UI, Segoe UI, Cambria)
- Add
aria-labelor 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,
‥) - Use U+0205A or CSS
\0205A—the correct value is U+205A and\205A - Put CSS escape
\205Ain HTML text nodes - Assume all decorative fonts include General Punctuation characters
Key Takeaways
Two HTML numeric references render ⁚
⁚ ⁚For CSS stylesheets, use the escape in the content property
\205AUnicode U+205A — TWO DOT PUNCTUATION
General Punctuation block (U+2000–U+206F)
Three methods, one glyph — no named HTML entity
❓ Frequently Asked Questions
⁚ (hex), ⁚ (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.⁚ or ⁚) 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.⁚ or ⁚ in HTML.Explore More HTML Entities!
Discover 1500+ HTML character references — punctuation, symbols, math operators, and more.
8 people found this page helpful
