Command line app that converts hex values to/from ASCII.
If you've not already done so, install rust: https://www.rust-lang.org/
Then install via cargo using:
bash
$ cargo install hex2ascii
bash
$ hex2ascii -h
hex2ascii 0.2.1
Gavyn Riebau
Converts hex values to ascii
USAGE:
hex2ascii [FLAGS]
FLAGS:
-h, --help Prints help information
-r, --reverse Converts from ascii to hex rather than the other way around
-V, --version Prints version information
-v, --verbose Include verbose output including warning messages written to stderr
bash
$ echo "Hello world" | hex2ascii -r
48656c6c6f20776f726c64
bash
$ echo "48656c6c6f20776f726c64" | hex2ascii
Hello world