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