DevKits

ASCII 102

Latin Small Letter F (f)

Printable ASCII

Lowercase letter f.

All encodings at a glance

Decimal102
Hexadecimal0x66
Octal0146
Binary01100110
HTML numeric entityf
URL encoding%66
UTF-8 bytes0x66

Code snippets

JavaScript

String.fromCharCode(102); // "f"
102.toString(16); // "66"

Python

chr(102)           # 'f'
ord(chr(102))      # 102
hex(102)           # '0x66'

HTML

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

Nearby codes