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