DevKits

ASCII 57

Digit 9 (9)

Printable ASCII

The digit nine.

All encodings at a glance

Decimal57
Hexadecimal0x39
Octal0071
Binary00111001
HTML numeric entity9
URL encoding%39
UTF-8 bytes0x39

Code snippets

JavaScript

String.fromCharCode(57); // "9"
57.toString(16); // "39"

Python

chr(57)           # '9'
ord(chr(57))      # 57
hex(57)           # '0x39'

HTML

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

Nearby codes