Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Binary file
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
{{Short description|Non-human-readable computer file encoded in binary form}} {{redirect|Binaries|double stars|Binary star}} {{redirect|.bin|the CD image format|Disk image}} {{more citations needed|date=April 2013}} [[File:Wikipedia favicon hexdump.svg|thumb|A [[hex dump]] of the 318 [[byte]] Wikipedia [[favicon]], or [[File:Wikipedia-favicon.png|16px]]. The first column numerates the line's starting address, while the <code>*</code> indicates repetition.]] A '''binary file''' is a [[computer file]] that is not a [[text file]].<ref name=":0">{{Cite web|url=http://www.linfo.org/binary_file.html|title=Binary file definition by The Linux Information Project (LINFO)|website=www.linfo.org|access-date=2017-10-12}}</ref> The term "binary file" is often used as a term meaning "non-text file".<ref name=":1">{{Cite web|url=https://www.cs.umd.edu/class/sum2003/cmsc311/Notes/BitOp/asciiBin.html|title=Ascii vs. Binary Files|website=www.cs.umd.edu|access-date=2017-10-12}}</ref> Many binary [[file format]]s contain parts that can be interpreted as text; for example, some [[Document file format|computer document files]] containing [[formatted text]], such as [[Doc (computing)#Microsoft Word Binary File Format|older Microsoft Word document]] files, contain the text of the document but also contain formatting information in binary form.<ref name=":1" /> == Background and terminology == All modern computers store information in the form of [[bit]]s (binary digits), using [[binary code]]. For this reason, all data stored on a computer is, in some sense, "binary". However, one particularly useful and ubiquitous type of data stored on a computer is one in which the bits represent text, by way of a [[character encoding]]. Those files are called "[[text files]]" and files which are not like that are referred to as "binary files", as a sort of [[retronym]] or [[hypernym]]. Some "text files" contain portions that are actually binary data, and many "binary files" contain portions that are encoded text; for instance, textual data may be stored as a field within the binary format, or arbitrary constants may have been chosen to correspond to ASCII letters as a mnemonic (this is common for [[file magic number]]s). These mixed binary-and-text file are usually regarded as "binary", because an application that can only process text will not know what to do with them. It is quite common for a text file to use its text to encode data that could be encoded in binary some other way; a text file that does this is still regarded as a text file, and not a binary file, so long as it remains within the previously-stated constraints about what the bits of the file represent. For example, in a binary file, the number 250 could be encoded in bits as the sequence 11111010. It could also be encoded in a text file (for example, a programming language source file) as the digits 2, 5, 0; which would in turn be encoded by the bits in the text file as (for example, using [[UTF-8]]) 00110010, 00110101, 00110000. == Structure == Binary files are usually thought of as being a sequence of [[byte]]s, which means the binary digits ([[bit]]s) are grouped in eights. Binary files typically contain bytes that are intended to be interpreted as something other than text [[Character (computing)|character]]s. [[Compiled]] computer programs are typical examples; indeed, compiled applications are sometimes referred to, particularly by programmers, as '''binaries'''. But binary files can also mean that they contain images, sounds, compressed versions of other files, etc. β in short, any type of file content whatsoever.<ref name=":0" /> Some binary files contain [[Header (computing)|headers]], blocks of [[metadata]] used by a [[computer program]] to interpret the data in the file. The header often contains a [[List of file signatures|signature or ''magic'' number]] which can identify the format. For example, a [[GIF]] file can contain multiple images, and headers are used to identify and describe each block of image data. The leading bytes of the header would contain text like <code>GIF87a</code> or <code>GIF89a</code> that can identify the binary as a [[GIF]] file. If a binary file does not contain any headers, it may be called a '''flat binary file'''. A text file may consist partly or entirely of encoded binary information. When sending binary files over the network they may be encoded so that they use only printable characters. This is often necessary due to the limitations of network protocols used for internet browsing and e-mail communication. One such encoding is [[Base64]]. Also, files containing public-key and private-key information for use in systems employing [[asymmetric cryptography]] (such as [[Digital certificate|website certificates]]) may also be stored with the binary information encoded in printable characters. == Manipulation == To send binary files through certain systems (such as [[email]]) that do not allow all data values, they are often translated into a plain text representation (using, for example, [[Base64]]). Encoding the data has the disadvantage of increasing the file size during the transfer (for example, using Base64 will increase the file's size by approximately 30%), as well as requiring translation back into binary after receipt. The increased size may be countered by lower-level link compression, as the resulting text data will have about as much less [[Entropy (information theory)|entropy]] as it has increased size, so the actual data transferred in this scenario would likely be very close to the size of the original binary data. See [[Binary-to-text encoding]] for more on this subject. [[Microsoft Windows]] and its standard libraries for the [[C (programming language)|C]] and [[C++]] programming languages allow the programmer to specify a parameter indicating if a file is expected to be plain text or binary when opening a file; this affects the standard library calls to read and write from the file in that the system converts between the C/C++ "end of line" character (the ASCII linefeed character) and the end-of-line sequence Windows expects in files (the ASCII [[carriage return]] and linefeed characters in sequence). In [[Unix-like]] systems, the C and C++ standard libraries on those systems also allow the programmer to specify whether a file is expected to be text or binary, but the libraries can and do ignore that parameter, as the end-of-line sequence in Unix-like systems is just the C/C++ end-of-line character. == Viewing == A [[hex editor]] or viewer may be used to view file data as a sequence of hexadecimal (or decimal, binary or ASCII character) values for corresponding bytes of a binary file.<ref name=":1" /> If a binary file is opened in a [[text editor]], each group of eight bits will typically be translated as a single character, and the user will see a (probably unintelligible) display of textual characters. If the file is opened in some other application, that application will have its own use for each byte: maybe the application will treat each byte as a number and output a stream of numbers between 0 and 255βor maybe interpret the numbers in the bytes as colors and display the corresponding picture. Other type of viewers (called 'word extractors') simply replace the unprintable characters with spaces revealing only the human-readable text. This type of view is useful for a quick inspection of a binary file in order to find passwords in games, find hidden text in non-text files and recover corrupted documents.<ref name=":1" /> It can even be used to inspect suspicious files (software) for unwanted effects. For example, the user would see any URL/email to which the suspected software may attempt to connect in order to upload unapproved data (to steal). If the file is itself treated as an [[executable]] and run, then the operating system will attempt to interpret the file as a series of instructions in its [[machine language]]. == Interpretation == Standards are very important to binary files. For example, a binary file interpreted by the ASCII character set will result in text being displayed. A custom application can interpret the file differently: a byte may be a sound, or a pixel, or even an entire word. Binary itself is meaningless, until such time as an executed algorithm defines what should be done with each bit, byte, word or block. Thus, just examining the binary and attempting to match it against known formats can lead to the wrong conclusion as to what it actually represents. This fact can be used in [[steganography]], where an algorithm interprets a binary data file differently to reveal hidden content. Without the algorithm, it is impossible to tell that hidden content exists. ==Binary compatibility== {{For|[[binary code]] [[executable file]] compatibility|Binary compatible}} Two files that are binary compatible will have the same sequence of zeros and ones in the data portion of the file. The file header, however, may be different. The term is used most commonly to state that data files produced by one application are exactly the same as data files produced by another application. For example, some software companies produce applications for [[Microsoft Windows|Windows]] and the [[Macintosh]] that are binary compatible, which means that a file produced in a Windows environment is interchangeable with a file produced on a Macintosh. This avoids many of the conversion problems caused by importing and exporting data. One possible binary compatibility issue between different computers is the [[endianness]] of the computer. Some computers store the bytes in a file in a different order.<ref>{{Cite web|url=https://www.ncl.ucar.edu/Applications/r-binary.shtml|title=NCL: Reading binary data|website=www.ncl.ucar.edu|access-date=2017-10-12|archive-url=https://web.archive.org/web/20171012100213/https://www.ncl.ucar.edu/Applications/r-binary.shtml|archive-date=2017-10-12|url-status=dead}}</ref> == See also == * [[Binary large object]] * [[Disassembler]] * [[Executable]] * [[List of file formats]] == References == <references /> == External links == * {{Wiktionary-inline|binaries}} {{Computer files}} [[Category:Computer file formats]]
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)
Pages transcluded onto the current version of this page
(
help
)
:
Template:Cite web
(
edit
)
Template:Computer files
(
edit
)
Template:For
(
edit
)
Template:More citations needed
(
edit
)
Template:Redirect
(
edit
)
Template:Short description
(
edit
)
Template:Wiktionary-inline
(
edit
)