Two Dots Over One Dot Punctuation

Shortcodes

Copy useful codes for two dots over one dot punctuation symbol ⸪ to use in websites, apps, blogs, and docs.

Unicode
U+2E2A
HTML Code
⸪
HEX Code
⸪
CSS Code
\2E2A
JS/JSON
\u2E2A
Unix/C/PHP/JAVA
0x2E2A
URL-encode
%E2%B8%AA

Customize Two Dots Over One Dot Punctuation

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

  

How to use Two Dots Over One Dot Punctuation Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⸪</span>
HTML Code:
<span>&#11818;</span>
HEX Code:
<span>&#x2E2A;</span>

Add with CSS

.two-dots-over-one-dot-punctuation::before {
  content: '\\2E2A';
}

Set it in JavaScript

document.querySelector('.two-dots-over-one-dot-punctuation').textContent = '⸪';
copied