DevKits

ASCII 100

Latin Small Letter D (d)

Printable ASCII

Lowercase letter d.

All encodings at a glance

Decimal100
Hexadecimal0x64
Octal0144
Binary01100100
HTML numeric entityd
URL encoding%64
UTF-8 bytes0x64

Code snippets

JavaScript

String.fromCharCode(100); // "d"
100.toString(16); // "64"

Python

chr(100)           # 'd'
ord(chr(100))      # 100
hex(100)           # '0x64'

HTML

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

Nearby codes