DevKits

ASCII 55

Digit 7 (7)

Printable ASCII

The digit seven.

All encodings at a glance

Decimal55
Hexadecimal0x37
Octal0067
Binary00110111
HTML numeric entity7
URL encoding%37
UTF-8 bytes0x37

Code snippets

JavaScript

String.fromCharCode(55); // "7"
55.toString(16); // "37"

Python

chr(55)           # '7'
ord(chr(55))      # 55
hex(55)           # '0x37'

HTML

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

Nearby codes