Not Identical To

Shortcodes

Copy useful codes for not identical to symbol ≢ to use in websites, apps, blogs, and docs.

Unicode
U+2262
HTML Code
≢
HEX Code
≢
CSS Code
\2262
JS/JSON
\u2262
Unix/C/PHP/JAVA
0x2262
URL-encode
%E2%89%A2

Customize Not Identical To

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

  

How to use Not Identical To Symbol in HTML, CSS, and JS

Insert in HTML

1. Direct symbol:
<span>≢</span>
HTML Code:
<span>&#8802;</span>
HEX Code:
<span>&#x2262;</span>

Add with CSS

.not-identical-to::before {
  content: '\\2262';
}

Set it in JavaScript

document.querySelector('.not-identical-to').textContent = '≢';
copied