In hex mode: <img width="772" alt="Image" src="https://github.com/user-attachments/assets/f34d0c5b-1eb0-4fe7-b213-042fd537628d" /> - every `i8` and `u8` should be just one byte (i.e. `0xXX`) - every `i16` and `u16` should be exactly two bytes (i.e. `0xXXXX`) - every `x24` should be 3 bytes - every `x32` should be 4 bytes - every `x64` should be 8 bytes In dec mode: <img width="596" alt="Image" src="https://github.com/user-attachments/assets/78e3272d-618e-4084-9f2f-f70eeb298ce7" /> - rendering `000` makes no sense. It's just `0`. - negative values should be just negative values, `0-1` is incorrect.
In hex mode:

i8andu8should be just one byte (i.e.0xXX)i16andu16should be exactly two bytes (i.e.0xXXXX)x24should be 3 bytesx32should be 4 bytesx64should be 8 bytesIn dec mode:

000makes no sense. It's just0.0-1is incorrect.