One Dot Over Two Dots Punctuation

Shortcodes

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

Unicode
U+2E2B
HTML Code
⸫
HEX Code
⸫
CSS Code
\2E2B
JS/JSON
\u2E2B
Unix/C/PHP/JAVA
0x2E2B
URL-encode
%E2%B8%AB

Customize One Dot Over Two Dots Punctuation

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

  

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

Insert in HTML

1. Direct symbol:
<span>⸫</span>
HTML Code:
<span>&#11819;</span>
HEX Code:
<span>&#x2E2B;</span>

Add with CSS

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

Set it in JavaScript

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