| Nombre del símbolo | Hyphen |
| Versión Unicode | 1.1 |
| Unicode | U+2010 |
| Bloque Unicode | |
| Categoría general | Dash Punctuation (Pd) |
| Código CSS | \2010 |
| Código hexadecimal | 0x2010 |
| Código HTML | ‐ |
| LaTeX | \text{HYPHEN} |
| Símbolo | ‐ |
| Codificación URL (porcentaje UTF-8) | %E2%80%90 |
| Nombre oral / lector de pantalla | Hyphen |
| UTF-8 | E2 80 90 |
| UTF-16 | 2010 |
| UTF-32 | 00002010 |
1\documentclass{article}2\usepackage{pifont}3\text{HYPHEN}4\end{document}Puedes escribir el símbolo hyphen en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 8208 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "hyphen", or use Unicode Hex Input with 2010.
Ctrl + Shift + U, type 2010, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with geometric symbol support.
1span.hyphen::before { content: "\2010"; }1<span>‐</span>La representación del símbolo Hyphen en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u2010' or String.fromCodePoint(8208) |
| Python | '\N{HYPHEN}' or chr(8208) |
| Rust | '\u{2010}' |
| C / C++ | UTF-8 source or wchar_t with U+2010 |
| Go | string(rune(0x2010)) |
| Ruby | "\u{2010}" |