| Nombre del símbolo | Colon |
| Versión Unicode | 1.1 |
| Unicode | U+003A |
| Bloque Unicode | |
| Categoría general | Other Punctuation (Po) |
| Código CSS | \003A |
| Código hexadecimal | 0x003A |
| Código HTML | : |
| LaTeX | : |
| Símbolo | : |
| Codificación URL (porcentaje UTF-8) | %3A |
| Nombre oral / lector de pantalla | Colon |
| UTF-8 | 3A |
| UTF-16 | 003A |
| UTF-32 | 0000003A |
1\documentclass{article}2\usepackage{pifont}3:4\end{document}Puedes escribir el símbolo colon en la mayoría de dispositivos modernos con los siguientes métodos:
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 representación del símbolo Colon en diferentes lenguajes de programación se muestra en la tabla:
| Lenguaje | Representación |
|---|---|
| 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}" |