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