ASCII 37
Percent Sign (%)
Printable ASCII
Percent sign. Introduces URL percent-encoded sequences (%20). Used as the modulo operator in most languages.
All encodings at a glance
| Decimal | 37 |
| Hexadecimal | 0x25 |
| Octal | 0045 |
| Binary | 00100101 |
| HTML numeric entity | % |
| URL encoding | %25 |
| UTF-8 bytes | 0x25 |
Code snippets
JavaScript
String.fromCharCode(37); // "%"
37.toString(16); // "25"Python
chr(37) # '%'
ord(chr(37)) # 37
hex(37) # '0x25'HTML
% <!-- numeric entity (no named entity for this character) -->