I have 2 bytes:
byte b1 = 0x5a; byte b2 = 0x25;
How do I get 0x5a25 ?
0x5a25
The simplest would be
b1*256 + b2