DevKits

ASCII 116

Latin Small Letter T (t)

Printable ASCII

Lowercase letter t.

All encodings at a glance

Decimal116
Hexadecimal0x74
Octal0164
Binary01110100
HTML numeric entityt
URL encoding%74
UTF-8 bytes0x74

Code snippets

JavaScript

String.fromCharCode(116); // "t"
116.toString(16); // "74"

Python

chr(116)           # 't'
ord(chr(116))      # 116
hex(116)           # '0x74'

HTML

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

Nearby codes