How do you receive multiple chars at once if my desired char is 7B which is 5566 once converted to decimal?
How do you get 5566 from 7B?
char code of '7' is 55, char code of 'B' is 55. I don't know why the OP would expect the arduino to automatically multiply the first char by 100 before adding the second though. Even if combined as an integer it would have a multiplication factor of 256 for the MSB. AND even this is still assuming MSB first.