| Nome del simbolo | Colon |
| Versione Unicode | 1.1 |
| Unicode | U+003A |
| Blocco Unicode | |
| Categoria generale | Other Punctuation (Po) |
| Codice CSS | \003A |
| Codice esadecimale | 0x003A |
| Codice HTML | : |
| LaTeX | : |
| Simbolo | : |
| Codifica URL (percentuale UTF-8) | %3A |
| Nome parlato / screen reader | Colon |
| UTF-8 | 3A |
| UTF-16 | 003A |
| UTF-32 | 0000003A |
1\documentclass{article}2\usepackage{pifont}3:4\end{document}Puoi digitare il simbolo colon sulla maggior parte dei dispositivi moderni con i seguenti metodi:
Alt + 58 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "colon", or use Unicode Hex Input with 003A.
Ctrl + Shift + U, type 003a, 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.colon::before { content: "\003A"; }1<span>:</span>La rappresentazione del simbolo Colon nei vari linguaggi di programmazione è nella tabella seguente:
| Linguaggio | Rappresentazione |
|---|---|
| JavaScript / TypeScript | '\u003A' or String.fromCodePoint(58) |
| Python | '\N{COLON}' or chr(58) |
| Rust | '\u{003A}' |
| C / C++ | UTF-8 source or wchar_t with U+003A |
| Go | string(rune(0x003A)) |
| Ruby | "\u{003A}" |