| Nombre del símbolo | Dagger |
| Versión Unicode | 1.1 |
| Unicode | U+2020 |
| Bloque Unicode | |
| Categoría general | Other Punctuation (Po) |
| Código CSS | \2020 |
| Código hexadecimal | 0x2020 |
| Código HTML | † |
| LaTeX | \dag |
| Símbolo | † |
| Codificación URL (porcentaje UTF-8) | %E2%80%A0 |
| Nombre oral / lector de pantalla | Dagger |
| UTF-8 | E2 80 A0 |
| UTF-16 | 2020 |
| UTF-32 | 00002020 |
1\documentclass{article}2\usepackage{pifont}3\dag 4\end{document}Puedes escribir el símbolo dagger en la mayoría de dispositivos modernos con los siguientes métodos:
Alt + 8224 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "dagger", or use Unicode Hex Input with 2020.
Ctrl + Shift + U, type 2020, 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 punctuation support.
1span.dagger::before { content: "\2020"; }1<span>†</span>La representación del símbolo Dagger en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| JavaScript / TypeScript | '\u2020' or String.fromCodePoint(8224) |
| Python | '\N{DAGGER}' or chr(8224) |
| Rust | '\u{2020}' |
| C / C++ | UTF-8 source or wchar_t with U+2020 |
| Go | string(rune(0x2020)) |
| Ruby | "\u{2020}" |