DevKits

ASCII 53

Digit 5 (5)

Printable ASCII

The digit five.

All encodings at a glance

Decimal53
Hexadecimal0x35
Octal0065
Binary00110101
HTML numeric entity5
URL encoding%35
UTF-8 bytes0x35

Code snippets

JavaScript

String.fromCharCode(53); // "5"
53.toString(16); // "35"

Python

chr(53)           # '5'
ord(chr(53))      # 53
hex(53)           # '0x35'

HTML

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

Nearby codes