DevKits

ASCII 50

Digit 2 (2)

Printable ASCII

The digit two.

All encodings at a glance

Decimal50
Hexadecimal0x32
Octal0062
Binary00110010
HTML numeric entity2
URL encoding%32
UTF-8 bytes0x32

Code snippets

JavaScript

String.fromCharCode(50); // "2"
50.toString(16); // "32"

Python

chr(50)           # '2'
ord(chr(50))      # 50
hex(50)           # '0x32'

HTML

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

Nearby codes