Convert Long Int to 4 Hex Bytes

krishpants:
As a follow-up question,

is putting the int value into an array of hex values the same as putting the hex value in?

as in if I

Serial.write(176);

will this send the same as

Serial.write(0xB0);

Yes it is