<div dir="ltr"><div>I don't know about true binary editors.  However it seems like you might be trying to bridge older vs. newer character sets, like me.  For this I have found the following approaches to be better than your "vi" experience.  If your purpose is more general than character set translation, then someone else may have a better suggestion.</div><div><br></div><div>* Open the file with the TextEdit app, which I believe is a built-in MacOS application.  This will make a reasonable effort to open and display any kind of file, including true binary files never intended for direct viewing.  ASCII, UTF-8, and many other character sets will be detected and displayed properly.  If you want to override the automatic character set guessing, go to Options in the File/Open dialog.  Overtyping can be done manually, if the number of substitutions is small.</div><div><br></div><div>* Use iconv on the command line to translate to a different character set.  This is also included with MacOS.  Man iconv for more details.  Caveat, this program will stop on the first unrecognized sequence, unless one of the substitution options is used.  For example, translate UTF-8 to ISO-8859-1, and insert legible escape sequences for all unrecognized sequences:</div><div><br></div><div>    iconv -f UTF-8 -t ISO-8859-1 --unicode-subst="<U+%04X>" infile > outfile<br></div><div><br></div><div>* To simply display binary, not edit, use "od -Ad -c" or "od -Ad -tx1" on the command line.</div><div dir="ltr"><br></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Wed, Sep 22, 2021 at 3:27 PM Dave Horsfall <<a href="mailto:dave@horsfall.org">dave@horsfall.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-style:solid;border-left-color:rgb(204,204,204);padding-left:1ex">I can see heaps of 3rd-party stuff out there, but is there an "official" <br>
one?<br>
<br>
I have a file with some binary stuff in it (8-bit accents, perhaps?) and <br>
"vi" just spits the dummy at that point and I want to search down further.<br>
<br>
Thanks.<br>
<br>
-- Dave<br>
</blockquote></div></div>