DevKits

ASCII 46

Full Stop (.)

Printable ASCII

Period / dot / full stop. Decimal point, object property access (obj.prop), file extension separator.

All encodings at a glance

Decimal46
Hexadecimal0x2E
Octal0056
Binary00101110
HTML numeric entity.
URL encoding%2E
UTF-8 bytes0x2E

Code snippets

JavaScript

String.fromCharCode(46); // "."
46.toString(16); // "2e"

Python

chr(46)           # '.'
ord(chr(46))      # 46
hex(46)           # '0x2e'

HTML

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

Nearby codes