ASCII 116
Latin Small Letter T (t)
Printable ASCII
Lowercase letter t.
All encodings at a glance
| Decimal | 116 |
| Hexadecimal | 0x74 |
| Octal | 0164 |
| Binary | 01110100 |
| HTML numeric entity | t |
| URL encoding | %74 |
| UTF-8 bytes | 0x74 |
Code snippets
JavaScript
String.fromCharCode(116); // "t"
116.toString(16); // "74"Python
chr(116) # 't'
ord(chr(116)) # 116
hex(116) # '0x74'HTML
t <!-- numeric entity (no named entity for this character) -->