DevKits

ASCII 110

Latin Small Letter N (n)

Printable ASCII

Lowercase letter n.

All encodings at a glance

Decimal110
Hexadecimal0x6E
Octal0156
Binary01101110
HTML numeric entityn
URL encoding%6E
UTF-8 bytes0x6E

Code snippets

JavaScript

String.fromCharCode(110); // "n"
110.toString(16); // "6e"

Python

chr(110)           # 'n'
ord(chr(110))      # 110
hex(110)           # '0x6e'

HTML

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

Nearby codes