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.

link|improve this question

76% accept rate
feedback

7 Answers

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|improve this answer
feedback

One recommendation I've gotten is Hex Fiend.

link|improve this answer
That's my choice. – Chuck May 6 '09 at 0:49
Yea, and you can read the developer talking about fun implementing stuff on it here ridiculousfish.com/blog – kch May 6 '09 at 0:50
feedback

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

link|improve this answer
+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 '09 at 23:25
feedback

On http://www.synalysis.net/ you can get the hex editor I'm developing for the Mac - Synalyze It!. It's free and offers some extra features like histogram, incremental search, support of many text encodings and interactive definition of a "grammar" for your file format.

The grammar helps to interpret the files and colors the hex view for easier analysis.

link|improve this answer
1  
I like feature that allows you to define custom structure of your binary file. It makes file analysis so much easier! – Peter Štibraný Nov 7 '10 at 22:31
feedback

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

link|improve this answer
feedback
  1. Open file with Xcode and press Command + Shift + J
  2. Right click file name in left pane
  3. Open as -> Hex
link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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