In Linux, the --type a
option in od
is explained as
--type=
Select the format in which to output the file data
…
a
named character, ignoring high-order bit
…
Only the least significant seven bits of each byte is used; the high-order bit is ignored.
Now this answer here explains a lot, especially "and words were two bytes long" – which leads to my specific
Question: What does high-order bit mean in connection with "named characters"
Maybe I'm just missing something…