furthermore, one might choose to interpret unix 32-bit timestamps as a sequence of four 8-bit characters:
"easy"
โก๏ธ 0x65, 0x61, 0x73, 0x79
โก๏ธ 0x65617379
โก๏ธ 1700885369
โก๏ธ Nov 24 '23 08:09:29p
the above assumes you read the integer out of memory big-byte-first or "big-end-ian" which is intuitive but not what most cpus these days do. if you go litte-endian, the bytes are reversed:
"easy"
โก๏ธ 0x65, 0x61, 0x73, 0x79
โก๏ธ 0x79736165 (little-endian!)
โก๏ธ 2037604709
โก๏ธ Jul 27 '34 02:18:29a
so,