Not Equal

Unicode Name: Not Equal To

Shortcodes

Copy and paste codes for Not Equal symbol ≠ to use in your websites, apps, blogs, and more.

Unicode
U+2260
HTML Code
≠
HEX Code
≠
CSS Code
\2260
JS/JSON
\u2260
Unix/C/PHP/JAVA
0x2260
URL-encode
%E2%89%A0
copied

Customize Not Equal Symbol

Customize ≠ symbol as you like and download Not Equal as SVG or PNG or copy its HTML code to use in your projects.

Preview helps customize symbol. Downloaded image and HTML code may have size/spacing differences.

                        
                    

How to add Not Equal symbol in HTML, CSS, and JS?

Insert ≠ Not Equal using HTML

1. Copy-paste Not Equal directly:
<span>≠</span>
2. HTML Decimal Code:
<span>&#8800;</span>
3. Hexadecimal Code:
<span>&#x2260;</span>
Preview:

Add Not Equal symbol with CSS

.not-equal::before {
    content: '\\2260';
}
Preview: Not Equal

Not Equal JavaScript Code

1. Direct Symbol:
document.querySelector('.not-equal').textContent = '≠';
2. Unicode Escape for ≠:
document.querySelector('.not-equal').textContent = '\u2260';
Preview: