od

Write an unambiguous representation, octal bytes by default, of FILE to standard output.

od [OPTIONS]
-A
–endian={big | little}
-A, –address-radix=RADIX, Output format for file offsets; RADIX is one of [doxn], for Decimal, Octal, Hex, or None.
–endian={big | little}, Swap input bytes according to the specified order.
od [OPTIONS]
–traditional
–traditional, Accept arguments in the following form:
od –traditional [OPTION]… [FILE] [[+]OFFSET[.][b] [+][LABEL][.][b]]
od [Traditional format]
od [TYPE]
a named character, ignoring high-order bit
c printable character or backslash escape
d[SIZE]
signed decimal, SIZE bytes per integer
f[SIZE]
floating point, SIZE bytes per float
o[SIZE]
octal, SIZE bytes per integer
u[SIZE]
unsigned decimal, SIZE bytes per integer
x[SIZE]
hexadecimal, SIZE bytes per integer
od [BYTES]
BYTES is hex with 0x or 0X prefix, and may have a multiplier suffix:
b 512
KB 1000
K 1024
MB 1000*1000
M 1024*1024
and so on for G, T, P, E, Z, Y.
EXAMPLES
od -A x -t x1z -v
Display hexdump format output
od -A o -t oS -w16
The default output format used by od