| Nome del simbolo | Minus Sign |
| Versione Unicode | 1.1 |
| Unicode | U+2212 |
| Blocco Unicode | |
| Categoria generale | Math Symbol (Sm) |
| Codice CSS | \2212 |
| Codice esadecimale | 0x2212 |
| Codice HTML | − |
| LaTeX | - |
| Simbolo | − |
| Codifica URL (percentuale UTF-8) | %E2%88%92 |
| Nome parlato / screen reader | Minus Sign |
| UTF-8 | E2 88 92 |
| UTF-16 | 2212 |
| UTF-32 | 00002212 |
1\documentclass{article}2\usepackage{pifont}3-4\end{document}Puoi digitare il simbolo minus sign sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Type Alt + 8722 on the numeric keypad, or insert from Character Map.
Use Edit > Emoji & Symbols and search for minus sign.
Use Ctrl + Shift + U, type 2212, then Enter.
Use symbol picker or copy and paste the character.
Use extended symbols panel or copy and paste.
1span.minus::before { content: "\2212"; }1<span>−</span>La rappresentazione del simbolo Minus Sign nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u2212' |
| Python | '\N{MINUS SIGN}' |
| Rust | '\u{2212}' |
| C / C++ | L"\u2212" or UTF-8 source |
| Go | string(rune(0x2212)) |
| Ruby | "\u2212" |