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
| Decimal | 46 |
| Hexadecimal | 0x2E |
| Octal | 0056 |
| Binary | 00101110 |
| HTML numeric entity | . |
| URL encoding | %2E |
| UTF-8 bytes | 0x2E |
Code snippets
JavaScript
String.fromCharCode(46); // "."
46.toString(16); // "2e"Python
chr(46) # '.'
ord(chr(46)) # 46
hex(46) # '0x2e'HTML
. <!-- numeric entity (no named entity for this character) -->