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