HTML Entity for Two Dot Leader (‥)

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

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

Unicode U+2025

General Punctuation block

Hex Code ‥

Hexadecimal reference

HTML Code ‥

Decimal reference

Named Entity ‥

Standard HTML named entity

Reference Table
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)
1

Complete HTML Example

A simple example showing ‥ using the named entity, hexadecimal code, decimal HTML code, and a CSS content escape:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2025";
  }
 </style>
</head>
<body>
<p>Two Dot Leader (named): &nldr;</p>
<p>Two Dot Leader (hex): &#x2025;</p>
<p>Two Dot Leader (decimal): &#8229;</p>
<p id="point">Two Dot Leader (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

U+2025 and the &nldr; named entity are 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 the Two Dot Leader (‥) in typographic and layout contexts:

Large glyph
Table of contents Chapter 1 ‥‥‥ 42
Menu leader Settings ‥‥ Options
Named entity &nldr; Leader dots
Numeric refs &#x2025; &#8229;

🧠 How It Works

1

Named HTML Entity

&nldr; is the most readable and commonly used method for displaying the Two Dot Leader. It is part of the HTML standard.

HTML markup
2

Hexadecimal Code

&#x2025; uses the Unicode hexadecimal value 2025. The x prefix indicates hexadecimal format.

HTML markup
3

Decimal HTML Code

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

HTML markup
4

CSS Entity

\2025 is used in CSS stylesheets in the content property of pseudo-elements like ::before and ::after.

CSS stylesheet
=

Same visual result

All four methods produce: . Unicode U+2025 in the General Punctuation block (U+2000–U+206F). Prefer &nldr; for readable source. Serve HTML as UTF-8.

Use Cases

The Two Dot Leader (‥) is commonly used in:

📖 Tables of contents

Connecting chapter titles to page numbers in indexes and TOCs.

📄 Text alignment

Aligning labels and values in formatted documents and menus.

📝 Typographic layouts

Editorial content, professional typesetting, and dot leader lines.

💻 Navigation menus

Sidebar links and menu items with visual separation via leaders.

📋 Formatted lists

Directories, price lists, and structured content with dot leaders.

📚 Education

Typography tutorials and HTML entity reference guides.

💡 Best Practices

Do

  • Use &nldr; for readable HTML source in typographic markup
  • Repeat ‥ or &nldr; 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, &hellip;) or ․ (one dot leader U+2024)
  • Use U+02025 or CSS \02025—the correct value is U+2025 and \2025
  • Put CSS escape \2025 in HTML text nodes
  • Rely on leader dots alone in accessibility-critical navigation
  • Assume all decorative fonts include General Punctuation characters

Key Takeaways

1

Preferred named entity renders ‥

&nldr;
2

Numeric HTML references also work

&#x2025; &#8229;
3

For CSS stylesheets, use \2025 in content

4

Unicode U+2025 — TWO DOT LEADER

5

Four methods, one glyph — General Punctuation block

❓ Frequently Asked Questions

Use &nldr; (named), &#x2025; (hex), &#8229; (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 &nldr;. Used for tables of contents, dot leaders, and typographic alignment.
In tables of contents, formatted lists, navigation menus, typographic layouts, and any content that needs visual dot leaders connecting labels to values or page numbers.
&nldr; is the most readable method in HTML source. Numeric codes (&#8229; or &#x2025;) are equally valid. Same visual result, different encoding style.
Yes. &nldr; 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.

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