HTML Entity for Two Dot Leader (‥)

What You'll Learn
How to display the Two Dot Leader (‥) in HTML using named, hexadecimal, decimal, and CSS entity methods. This character is U+2025 (TWO DOT LEADER) in the General Punctuation block (U+2000–U+206F)—a typographic leader used in tables of contents, formatted lists, and layouts that connect text to page numbers or values.
Render it with ‥, ‥, ‥, or CSS escape \2025. Compare ․ (one dot leader, U+2024) or … (horizontal ellipsis, U+2026, …) for related punctuation characters.
⚡ Quick Reference — Two Dot Leader
U+2025General Punctuation block
‥Hexadecimal reference
‥Decimal reference
‥Standard HTML named entity
Name Value
──────────── ──────────
Unicode U+2025
Hex code ‥
HTML code ‥
Named entity ‥
CSS code \2025
Meaning Two dot leader (typography)
Related U+2024 = one dot leader (․)
U+2026 = ellipsis (…, …)
Block General Punctuation (U+2000–U+206F)Complete HTML Example
A simple example showing ‥ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:
<!DOCTYPE html>
<html>
<head>
<style>
#point::after{
content: "\2025";
}
</style>
</head>
<body>
<p>Two Dot Leader (named): ‥</p>
<p>Two Dot Leader (hex): ‥</p>
<p>Two Dot Leader (decimal): ‥</p>
<p id="point">Two Dot Leader (CSS): </p>
</body>
</html>🌐 Browser Support
U+2025 and the ‥ named entity are supported in modern browsers when rendered with a font that includes General Punctuation characters:
👀 Live Preview
See the Two Dot Leader (‥) in typographic and layout contexts:
🧠 How It Works
Named HTML Entity
‥ is the most readable and commonly used method for displaying the Two Dot Leader. It is part of the HTML standard.
Hexadecimal Code
‥ uses the Unicode hexadecimal value 2025. The x prefix indicates hexadecimal format.
Decimal HTML Code
‥ uses the decimal Unicode value 8229 to display the same character.
CSS Entity
\2025 is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.
Same visual result
All four methods produce: ‥. Unicode U+2025 in the General Punctuation block (U+2000–U+206F). Prefer ‥ for readable source. Serve HTML as UTF-8.
Use Cases
The Two Dot Leader (‥) is commonly used in:
Connecting chapter titles to page numbers in indexes and TOCs.
Aligning labels and values in formatted documents and menus.
Editorial content, professional typesetting, and dot leader lines.
Sidebar links and menu items with visual separation via leaders.
Directories, price lists, and structured content with dot leaders.
Typography tutorials and HTML entity reference guides.
💡 Best Practices
Do
- Use
‥for readable HTML source in typographic markup - Repeat ‥ or
‥to build longer leader lines in TOCs - Use fonts that support General Punctuation (system UI, Segoe UI, Cambria)
- Pair leaders with visible text so screen readers get full context
- Serve pages with UTF-8 (
<meta charset="utf-8">)
Don’t
- Confuse ‥ (two dot leader) with … (ellipsis U+2026,
…) or ․ (one dot leader U+2024) - Use U+02025 or CSS
\02025—the correct value is U+2025 and\2025 - Put CSS escape
\2025in HTML text nodes - Rely on leader dots alone in accessibility-critical navigation
- Assume all decorative fonts include General Punctuation characters
Key Takeaways
Preferred named entity renders ‥
‥Numeric HTML references also work
‥ ‥For CSS stylesheets, use \2025 in content
Unicode U+2025 — TWO DOT LEADER
Four methods, one glyph — General Punctuation block
❓ Frequently Asked Questions
‥ (named), ‥ (hex), ‥ (decimal), or \2025 in CSS content. All four produce ‥.U+2025 (TWO DOT LEADER). General Punctuation block (U+2000–U+206F). Hex 2025, decimal 8229, named entity ‥. Used for tables of contents, dot leaders, and typographic alignment.‥ is the most readable method in HTML source. Numeric codes (‥ or ‥) are equally valid. Same visual result, different encoding style.‥ is part of the HTML standard and supported across modern browsers. It is the preferred method for displaying the two dot leader (‥).Explore More HTML Entities!
Discover 1500+ HTML character references — punctuation, leaders, math operators, and more.
8 people found this page helpful
