| Nome del simbolo | Dotted Cross |
| Versione Unicode | 4.1 |
| Unicode | U+205C |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \205C |
| Codice esadecimale | 0x205C |
| Codice HTML | ⁜ |
| LaTeX | \text{DOTTEDCROSS} |
| Simbolo | ⁜ |
| Codifica URL (percentuale UTF-8) | %E2%81%9C |
| Nome parlato / screen reader | 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}Puoi digitare il simbolo dotted cross sulla maggior parte dei dispositivi moderni con i seguenti metodi:
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 rappresentazione del simbolo Dotted Cross nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| 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}" |