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