Congruent With Dot Above

Shortcodes

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

Unicode
U+2A6D
HTML Code
⩭
HEX Code
⩭
CSS Code
\2A6D
JS/JSON
\u2A6D
Unix/C/PHP/JAVA
0x2A6D
URL-encode
%E2%A9%AD

Customize Congruent With Dot Above

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

  

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

Insert in HTML

1. Direct symbol:
<span>⩭</span>
HTML Code:
<span>&#10861;</span>
HEX Code:
<span>&#x2A6D;</span>

Add with CSS

.congruent-with-dot-above::before {
  content: '\\2A6D';
}

Set it in JavaScript

document.querySelector('.congruent-with-dot-above').textContent = '⩭';
copied