HTML Entity for One Dot Leader (․)

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

What You'll Learn

How to display the One Dot Leader (․) in HTML using hexadecimal, decimal, and CSS escape methods. This character is U+2024 (ONE DOT LEADER) in the General Punctuation block (U+2000–U+206F)—a typography dot used to create leader lines that connect text to page numbers, prices, or fill-in areas.

Render it with ․, ․, or CSS escape \2024. There is no named HTML entity. Repeat ․ to build a dotted leader (e.g. Chapter 1․․․ 42). Do not confuse with ellipsis (…, …) or a regular period (.).

⚡ Quick Reference — One Dot Leader

Unicode U+2024

General Punctuation

Hex Code ․

Hexadecimal reference

HTML Code ․

Decimal reference

Named Entity

Use numeric codes only

Reference Table
Name           Value
────────────   ──────────
Unicode        U+2024
Hex code       ․
HTML code      ․
Named entity   (none)
CSS code       \2024
Meaning        One dot leader (typography)
Related        U+2025 = two dot leader (‥, ‥)
               U+2026 = ellipsis (…, …)
               U+00B7 = middle dot (·, ·)
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. Repeat the character for leader lines:

html
<!DOCTYPE html>
<html>
<head>
 <style>
  #point::after{
   content: "\2024";
  }
 </style>
</head>
<body>
<p>One dot leader (hex): &#x2024;</p>
<p>One dot leader (decimal): &#8228;</p>
<p>TOC leader: Chapter 1&#x2024;&#x2024;&#x2024; 42</p>
<p id="point">One dot leader (CSS): </p>
</body>
</html>
Try it Yourself

🌐 Browser Support

The One Dot Leader (․) is widely supported in all modern browsers:

Chrome1+
Firefox1+
Safari1+
Edge12+
Opera4+
Android4.4+
iOS Safari1+

👀 Live Preview

See the One Dot Leader (․) in typography and layout contexts:

Single dot
TOC leader Introduction․․․․․․․ 3
Menu leader Coffee․․․․ $4.50
Not the same as Ellipsis … (&hellip;)  |  Period .  |  Middle dot ·
Numeric refs &#x2024; &#8228; \2024

🧠 How It Works

1

Hexadecimal Code

&#x2024; uses the Unicode hexadecimal value 2024 to display the one dot leader character.

HTML markup
2

Decimal HTML Code

&#8228; uses the decimal Unicode value 8228 for the same character.

HTML markup
3

CSS Entity

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

CSS stylesheet
=

Leader line result

Repeat ․ to build dotted leaders: Chapter 1․․․ 42. Unicode U+2024 in General Punctuation.

Use Cases

The One Dot Leader (․) is commonly used in:

📚 Table of contents

Dotted leaders connecting section titles to page numbers.

📄 Forms & documents

Fill-in dots for signatures, dates, and blank fields on printed-style layouts.

🍴 Menus & price lists

Leader dots between item names and prices in restaurant or catalog layouts.

🎨 Typography

Professional publishing, indexes, and tab-leader alignment in CSS or print-style HTML.

💻 Web layouts

Custom TOC components, invoice templates, and dotted separator lines.

📋 Unicode references

Character pickers, entity documentation, and typography guides.

♿ Accessibility

Prefer semantic markup for navigation; use leaders decoratively, not as sole link text.

💡 Best Practices

Do

  • Repeat &#x2024; or &#8228; for leader lines
  • Consider CSS leader() / tab stops for automatic leaders when supported
  • Use … (&hellip;) for omitted text, not ․
  • Set <meta charset="utf-8"> for reliable rendering
  • Pick one numeric style per project

Don’t

  • Use ․ as an ellipsis substitute—use &hellip; (…) instead
  • Confuse one dot leader with a period (.) or middle dot (·)
  • Use padded Unicode notation like U+02024—the correct value is U+2024
  • Put CSS escape \2024 in HTML text nodes
  • Overuse leader dots where CSS flex/grid spacing is clearer

Key Takeaways

1

Two HTML numeric references plus CSS for U+2024

&#x2024; &#8228;
2

For CSS stylesheets, use \2024 in the content property

3

Unicode U+2024 — ONE DOT LEADER for typography

4

Repeat ․ for TOC/menu leaders; not the same as …

❓ Frequently Asked Questions

Use &#x2024; (hex), &#8228; (decimal), or \2024 in CSS content. Repeat the character for leader lines (e.g. Chapter 1&#x2024;&#x2024;&#x2024; 42). There is no named entity.
U+2024 (ONE DOT LEADER). General Punctuation block (U+2000–U+206F). Hex 2024, decimal 8228.
No. ․ (U+2024) is a single leader dot for typography. … (U+2026, &hellip;) is the horizontal ellipsis for omitted text. ‥ (U+2025, &nldr;) is the two dot leader.
For table-of-contents leaders, form fill-in dots, menus connecting labels to values, indexes, and any layout needing repeated dotted leader lines.
Named entities cover a subset of common characters. U+2024 uses numeric hex or decimal codes or CSS escapes. Related leaders like two-dot leader have &nldr; (U+2025), but U+2024 itself has no named form.

Explore More HTML Entities!

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