Ring In Equal To

Shortcodes

Copy useful codes for ring in equal to symbol ≖ to use in websites, apps, blogs, and docs.

Unicode
U+2256
HTML Code
≖
HEX Code
≖
CSS Code
\2256
JS/JSON
\u2256
Unix/C/PHP/JAVA
0x2256
URL-encode
%E2%89%96

Customize Ring In Equal To

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

  

How to use Ring In Equal To Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≖</span>
HTML Code:
<span>&#8790;</span>
HEX Code:
<span>&#x2256;</span>

Add with CSS

.ring-in-equal-to::before {
  content: '\\2256';
}

Set it in JavaScript

document.querySelector('.ring-in-equal-to').textContent = '≖';
copied