The standard baud rate 38400, if you write it in hex, becomes 0x9600, which is confusing, because 9600 (decimal) is another of the standard baud rates.
(I first encountered this fact while reading a hex dump of an SSH session. The SSH terminal setup packet has a baud rate field, and I saw 00 00 96 00 in the hex dump, and thought "fine, yes, baud rate, move on … wait, *what*?")
A much more well known hex/decimal coincidence is that 100 decimal = 0x64 hex, which looks confusingly backwards because you expect numbers that look round in *hex* to look like familiar power-of-2 things in *decimal*.
But these aren't separate coincidences: they're two facets of the same one.
Because if 100 = 0x64 and 256 = 0x100, then multiplying both together gives you a number that ends in two zeroes in both bases: 25600 = 0x6400. And you can divide by 2 to get 12800 = 0x3200, and multiply by 3 to get 38400 = 0x9600, without any carries on the hex side spoiling the fun.