Two Dot Leader

Shortcodes

Copy useful codes for two dot leader symbol ‥ to use in websites, apps, blogs, and docs.

Unicode
U+2025
HTML Code
‥
HEX Code
‥
CSS Code
\2025
JS/JSON
\u2025
Unix/C/PHP/JAVA
0x2025
URL-encode
%E2%80%A5

Customize Two Dot Leader

Customize ‥, download it as SVG or PNG, or copy the generated HTML snippet.

  

How to use Two Dot Leader Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>‥</span>
HTML Code:
<span>&#8229;</span>
HEX Code:
<span>&#x2025;</span>

Add with CSS

.two-dot-leader::before {
  content: '\\2025';
}

Set it in JavaScript

document.querySelector('.two-dot-leader').textContent = '‥';
copied