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