Byte
Byte represents a single byte of data when used with Read and related functions.
Examples
Read bytes from a stream:
stream = OpenRead["file.bin", BinaryFormat -> True];
Read[stream, Byte]
(* 65 *)
Close[stream];Please visit the official Wolfram Language Reference for more details.