I want to open files in binary format. I want to see binary code, not hex. And want to edit in binary format and ability to save changes. What is the best application to do this or is there any easy way to do this ?
Asked
Active
Viewed 1.1k times
1 Answers
2
Here's one way:
Download: http://www.hhdsoftware.com/Downloads/free-hex-editor

Open a file and choose the binary edit dialog.

This will let you edit\view one byte at a time.
Another way is using C++ or practically any other programming language you like. As you can see it isn't much code.
-
I agree with this. Find something that deals with mostly Hex, binary for the few places where it makes a difference. You only want to deal with a few binary bytes, not a whole file. – Rich Homolka Dec 19 '14 at 03:09