Convert between hexadecimal, decimal, binary, and ASCII representations. Essential for low-level debugging, binary protocol analysis, and byte-level data inspection.
hex-tool [options] <value>
# Encode text to hex
hex-tool --encode "Hello World"
# Decode hex to text
hex-tool --decode "48656c6c6f"
# Convert decimal to hex
hex-tool --from dec --to hex 255
共 1 个版本