ASCII 58
Colon (:)
Printable ASCII
Colon. Key-value separator in JSON, YAML, and CSS. URL scheme separator (https:).
All encodings at a glance
| Decimal | 58 |
| Hexadecimal | 0x3A |
| Octal | 0072 |
| Binary | 00111010 |
| HTML numeric entity | : |
| URL encoding | %3A |
| UTF-8 bytes | 0x3A |
Code snippets
JavaScript
String.fromCharCode(58); // ":"
58.toString(16); // "3a"Python
chr(58) # ':'
ord(chr(58)) # 58
hex(58) # '0x3a'HTML
: <!-- numeric entity (no named entity for this character) -->