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