vote up 1 vote down star

What's a good hex editor/viewer for the Mac? I've used xxd for viewing hexdumps, and I think it can be used in reverse to make edits. But what I really want is a real hex editor.

flag

72% accept rate

5 Answers

vote up 4 vote down

One recommendation I've gotten is Hex Fiend.

link|flag
That's my choice. – Chuck May 6 at 0:49
Yea, and you can read the developer talking about fun implementing stuff on it here ridiculousfish.com/blog – kch May 6 at 0:50
vote up 3 vote down

I have recently started using 0xED, and like it a lot.

link|flag
+1 I've always used HexFiend myself, and had not heard of 0xED... nice to learn about something new (new to me, anyway). – Jarret Hardie May 5 at 23:25
vote up 0 vote down

There are probably better options, but I use and kind of like TextWrangler for basic hex editing. File -> hex Dump File

link|flag
vote up 4 vote down

I use Vim as a hex editor:

  1. Open the file in Vim.
  2. Run the command

    :% ! xxd

  3. Edit.
  4. Once done, run

    :% ! xxd -r

  5. Save.
link|flag
vote up 1 vote down

The one that I like is HexEdit Quick and easy to use

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.