Three Dot Punctuation

Shortcodes

Copy and paste codes for Three Dot Punctuation symbol ⁖ to use in your websites, apps, blogs, and more.

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

Customize Three Dot Punctuation Symbol

Customize ⁖ symbol as you like and download Three Dot Punctuation as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Three Dot Punctuation symbol in HTML, CSS, and JS?

Insert ⁖ Three Dot Punctuation using HTML

1. Copy-paste Three Dot Punctuation directly:
<span>⁖</span>
2. HTML Decimal Code:
<span>&#8278;</span>
3. Hexadecimal Code:
<span>&#x2056;</span>
Preview:

Add Three Dot Punctuation symbol with CSS

.three-dot-punctuation::before {
    content: '\\2056';
}
Preview: Three Dot Punctuation

Three Dot Punctuation JavaScript Code

1. Direct Symbol:
document.querySelector('.three-dot-punctuation').textContent = '⁖';
2. Unicode Escape for ⁖:
document.querySelector('.three-dot-punctuation').textContent = '\u2056';
Preview: