Equals Sign With Two Dots Above And Two Dots Below

Shortcodes

Copy useful codes for equals sign with two dots above and two dots below symbol ⩷ to use in websites, apps, blogs, and docs.

Unicode
U+2A77
HTML Code
⩷
HEX Code
⩷
CSS Code
\2A77
JS/JSON
\u2A77
Unix/C/PHP/JAVA
0x2A77
URL-encode
%E2%A9%B7

Customize Equals Sign With Two Dots Above And Two Dots Below

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

  

How to use Equals Sign With Two Dots Above And Two Dots Below Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>⩷</span>
HTML Code:
<span>&#10871;</span>
HEX Code:
<span>&#x2A77;</span>

Add with CSS

.equals-sign-with-two-dots-above-and-two-dots-below::before {
  content: '\\2A77';
}

Set it in JavaScript

document.querySelector('.equals-sign-with-two-dots-above-and-two-dots-below').textContent = '⩷';
copied