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