| Nome del simbolo | Not Equal To |
| Versione Unicode | 1.1 |
| Unicode | U+2260 |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \2260 |
| Codice esadecimale | 0x2260 |
| Codice HTML | ≠ |
| LaTeX | \neq |
| Simbolo | ≠ |
| Codifica URL (percentuale UTF-8) | %E2%89%A0 |
| Nome parlato / screen reader | Not Equal To |
| UTF-8 | E2 89 A0 |
| UTF-16 | 2260 |
| UTF-32 | 00002260 |
1\documentclass{article}2\usepackage{pifont}3\neq4\end{document}Puoi digitare il simbolo not equal to sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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>La rappresentazione del simbolo Not Equal To nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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" |