Math & Science

Not Equal To Sign ()

Mathematical relational operator indicating inequality between two values.

One-Click Copyable Code Formats

HTML Named Entity
≠
HTML Decimal Code
≠
HTML Hex Code
≠
CSS content (\XXXX)
\2260
JavaScript Unicode (\uXXXX)
\u2260
URL Percent Encoded
%E2%89%A0

Real-World Implementation Snippets

HTML5 Document
<p>Example: &ne;</p>
CSS ::before / ::after
.badge::before { content: '\2260 '; }
React JSX / TypeScript
<span>{"\u2260"}</span>
Frequently Asked Questions

Not Equal To Sign (≠) HTML Entity FAQ

Common questions regarding HTML escape codes, CSS pseudo-elements, and browser character encoding.

The standard HTML named entity is "&ne;". If using numeric codes, you can use the decimal code "&#8800;" or hex code "&#x2260;".