Neither Approximately Nor Actually Equal To

Shortcodes

Copy useful codes for neither approximately nor actually equal to symbol ≇ to use in websites, apps, blogs, and docs.

Unicode
U+2247
HTML Code
≇
HEX Code
≇
CSS Code
\2247
JS/JSON
\u2247
Unix/C/PHP/JAVA
0x2247
URL-encode
%E2%89%87

Customize Neither Approximately Nor Actually Equal To

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

  

How to use Neither Approximately Nor Actually Equal To Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≇</span>
HTML Code:
<span>&#8775;</span>
HEX Code:
<span>&#x2247;</span>

Add with CSS

.neither-approximately-nor-actually-equal-to::before {
  content: '\\2247';
}

Set it in JavaScript

document.querySelector('.neither-approximately-nor-actually-equal-to').textContent = '≇';
copied