I'm trying to visualize the bitmap of a frame buffer using hexdump, however the data is shifted left by two. Is it possible to use the hexdump (or other binary file visualization tool like xxd) formatting to shift each byte right by two for visualization?
Example:
My current file:
0x84 0x14 0x50
I want to see (each byte shifted right by two):
0x21 0x05 0x14