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