| Nombre del símbolo | Minus Sign |
| Versión Unicode | 1.1 |
| Unicode | U+2212 |
| Bloque Unicode | |
| Categoría general | Math Symbol (Sm) |
| Código CSS | \2212 |
| Código hexadecimal | 0x2212 |
| Código HTML | − |
| LaTeX | - |
| Símbolo | − |
| Codificación URL (porcentaje UTF-8) | %E2%88%92 |
| Nombre oral / lector de pantalla | Minus Sign |
| UTF-8 | E2 88 92 |
| UTF-16 | 2212 |
| UTF-32 | 00002212 |
1\documentclass{article}2\usepackage{pifont}3-4\end{document}Puedes escribir el símbolo minus sign en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Minus Sign en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u2212' |
| Python | '\N{MINUS SIGN}' |
| Rust | '\u{2212}' |
| C / C++ | L"\u2212" or UTF-8 source |
| Go | string(rune(0x2212)) |
| Ruby | "\u2212" |