Are hex editors called binary editors

binary fileshex-editorhexadecimal

Hex and binary are two different bases. Hex, in my understanding, is simply an easier to use and more convenient version of binary.

However, I often hear that hex editors are binary editors. If you search for "binary editor" on Google, you get hex editors.

Best Answer

A binary editor edits a file as a binary file.

Binary file - Wikipedia

A binary file is a computer file that is not a text file. The term "binary file" is often used as a term meaning "non-text file" [and is] usually thought of as being a sequence of bytes. ... Binary files typically contain bytes that are intended to be interpreted as something other than text characters.

A hex editor is a type of binary editor in which the data is represented in hexadecimal.

Hex editor - Wikipedia

A hex editor (or binary file editor or byte editor) is a type of computer program that allows for manipulation of the fundamental binary data that constitutes a computer file. The name 'hex' comes from 'hexadecimal': a standard representation for numbers that has 16 as its base.

Related Question