Identical With Dot Above

Shortcodes

Copy useful codes for identical with dot above symbol ⩧ to use in websites, apps, blogs, and docs.

Unicode
U+2A67
HTML Code
⩧
HEX Code
⩧
CSS Code
\2A67
JS/JSON
\u2A67
Unix/C/PHP/JAVA
0x2A67
URL-encode
%E2%A9%A7

Customize Identical With Dot Above

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

  

How to use Identical With Dot Above Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩧</span>
HTML Code:
<span>&#10855;</span>
HEX Code:
<span>&#x2A67;</span>

Add with CSS

.identical-with-dot-above::before {
  content: '\\2A67';
}

Set it in JavaScript

document.querySelector('.identical-with-dot-above').textContent = '⩧';
copied