| Symbol Name | Not Equal To |
| Unicode Version | 1.1 |
| Unicode | U+2260 |
| Unicode block | |
| General category | Math Symbol (Sm) |
| CSS Code | \2260 |
| Hex Code | 0x2260 |
| HTML Code | ≠ |
| LaTeX | \neq |
| Symbol | ≠ |
| URL encode (UTF-8 percent) | %E2%89%A0 |
| Spoken / screen reader name | Not Equal To |
| UTF-8 | E2 89 A0 |
| UTF-16 | 2260 |
| UTF-32 | 00002260 |
1\documentclass{article}2\usepackage{pifont}3\neq4\end{document}You can type the not equal to symbol on most modern devices with the help of following methods:
Type Alt + 8800 on the numeric keypad, or insert from Character Map.
Use Option + = on common US keyboard layouts.
Use Ctrl + Shift + U, type 2260, then Enter.
Use extended symbols picker or copy and paste.
Use symbols panel or copy and paste.
1span.neq::before { content: "\2260"; }1<span>≠</span>Not Equal To symbol's representation in different programming languages can be found in the table below:
| Language | Representation |
|---|---|
| JavaScript / TypeScript | '\u2260' |
| Python | '\N{NOT EQUAL TO}' |
| Rust | '\u{2260}' |
| C / C++ | L"\u2260" or UTF-8 source |
| Go | string(rune(0x2260)) |
| Ruby | "\u2260" |