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