:
Colon
Decimal: 58
Hex: 3A
Symbol
ASCII Values
Decimal
58
Hexadecimal
0x3A
Character
:
Usage Examples
JavaScript (from decimal)
String.fromCharCode(58); // ":"
JavaScript (to decimal)
":".charCodeAt(0); // 58
Python
chr(58) # ":"
ord(":") # 58C/C++
char c = 58; // ':' int code = ':'; // 58
Symbol Characters
Symbol characters include punctuation marks, mathematical operators, and special characters used in programming and text formatting.