DevKits

ASCII 51

Digit 3 (3)

Printable ASCII

The digit three.

All encodings at a glance

Decimal51
Hexadecimal0x33
Octal0063
Binary00110011
HTML numeric entity3
URL encoding%33
UTF-8 bytes0x33

Code snippets

JavaScript

String.fromCharCode(51); // "3"
51.toString(16); // "33"

Python

chr(51)           # '3'
ord(chr(51))      # 51
hex(51)           # '0x33'

HTML

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

Nearby codes