DevKits

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

Decimal37
Hexadecimal0x25
Octal0045
Binary00100101
HTML numeric entity%
URL encoding%25
UTF-8 bytes0x25

Code snippets

JavaScript

String.fromCharCode(37); // "%"
37.toString(16); // "25"

Python

chr(37)           # '%'
ord(chr(37))      # 37
hex(37)           # '0x25'

HTML

&#37;   <!-- numeric entity (no named entity for this character) -->

Nearby codes