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