The question is based on the output of the following command:
$ hexdump -C acpid.pid
00000000 36 39 37 0a |697.|
00000004
As expected, 0x36 0x39 0x37
are resolved to their associated symbols 6 9 7
.
Since 0x0A
is a line feed their is no ordinary symbol to respresent it (according to the ASCII table), but
Why is 0x0A
getting resolved to a dot?
My operating system is Ubuntu 18.04.3.