DevKits

ASCII 58

Colon (:)

Printable ASCII

Colon. Key-value separator in JSON, YAML, and CSS. URL scheme separator (https:).

All encodings at a glance

Decimal58
Hexadecimal0x3A
Octal0072
Binary00111010
HTML numeric entity:
URL encoding%3A
UTF-8 bytes0x3A

Code snippets

JavaScript

String.fromCharCode(58); // ":"
58.toString(16); // "3a"

Python

chr(58)           # ':'
ord(chr(58))      # 58
hex(58)           # '0x3a'

HTML

&#58;   <!-- numeric entity (no named entity for this character) -->

Nearby codes