Three Dot Punctuation

Shortcodes

Copy useful codes for three dot punctuation symbol ⁖ to use in websites, apps, blogs, and docs.

Unicode
U+2056
HTML Code
⁖
HEX Code
⁖
CSS Code
\2056
JS/JSON
\u2056
Unix/C/PHP/JAVA
0x2056
URL-encode
%E2%81%96

Customize Three Dot Punctuation

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

  

How to use Three Dot Punctuation Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⁖</span>
HTML Code:
<span>&#8278;</span>
HEX Code:
<span>&#x2056;</span>

Add with CSS

.three-dot-punctuation::before {
  content: '\\2056';
}

Set it in JavaScript

document.querySelector('.three-dot-punctuation').textContent = '⁖';
copied