I know there are many questions like these, but they don't seem to work as I expect, or probably I don't know how to use them.
Basically, how can I convert this:
65 78 61 6d 70 6c 65
Into this:
example
Basically like hex editors do (HxD, Microhex, and so on)
The reason for that is because I'd like to write data based on hexadecimal data, without using
using (BinaryWriter bw = new BinaryWriter(File.Open("file.txt", FileMode.Append)))
{
bw.Write("foo bar"); // Here we are writing binary data normally, but not what I would want
}