Two Dot Punctuation

Shortcodes

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

Unicode
U+205A
HTML Code
⁚
HEX Code
⁚
CSS Code
\205A
JS/JSON
\u205A
Unix/C/PHP/JAVA
0x205A
URL-encode
%E2%81%9A
copied

Customize Two Dot Punctuation Symbol

Customize ⁚ symbol as you like and download Two 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 Two Dot Punctuation symbol in HTML, CSS, and JS?

Insert ⁚ Two Dot Punctuation using HTML

1. Copy-paste Two Dot Punctuation directly:
<span>⁚</span>
2. HTML Decimal Code:
<span>&#8282;</span>
3. Hexadecimal Code:
<span>&#x205A;</span>
Preview:

Add Two Dot Punctuation symbol with CSS

.two-dot-punctuation::before {
    content: '\\205A';
}
Preview: Two Dot Punctuation

Two Dot Punctuation JavaScript Code

1. Direct Symbol:
document.querySelector('.two-dot-punctuation').textContent = '⁚';
2. Unicode Escape for ⁚:
document.querySelector('.two-dot-punctuation').textContent = '\u205A';
Preview: