Top "Binary" questions

Binary, the base-2 numeral system, represents numbers using two symbols: 0 and 1. For compiled computer programs, use the "executable" tag instead.

How to convert text to binary code in JavaScript?

Text to Binary Code I want JavaScript to translate text in a textarea into binary code. For example, if a …

javascript string binary
Converting binary to decimal integer output

I need to convert a binary input into a decimal integer. I know how to go from a decimal to …

python python-2.7 binary integer base-conversion
How to convert a string or integer to binary in Ruby?

How do you create integers 0..9 and math operators + - * / in to binary strings. For example: 0 = 0000, 1 = 0001, ... 9 = 1001 Is there a way to …

ruby binary encode
What is an application binary interface (ABI)?

I never clearly understood what an ABI is. Please don't point me to a Wikipedia article. If I could understand …

api compiler-construction binary operating-system abi
Compare two Byte Arrays? (Java)

I have a byte array with a ~known binary sequence in it. I need to confirm that the binary sequence …

java binary
Display the binary representation of a number in C?

Possible Duplicate: Is there a printf converter to print in binary format? Still learning C and I was wondering: Given …

c binary printf representation
How do you embed binary data in XML?

I have two applications written in Java that communicate with each other using XML messages over the network. I'm using …

java xml binary binary-data
Save and retrieve image (binary) from SQL Server using Entity Framework 6

I am trying to save a bitmap image to database Bitmap map = new Bitmap(pictureBoxMetroMap.Size.Width, pictureBoxMetroMap.Size.Height); …

c# entity-framework bitmap binary
How to append binary data to a buffer in node.js

I have a buffer with some binary data: var b = new Buffer ([0x00, 0x01, 0x02]); and I want to append 0…

node.js binary append buffer
Why does Git treat this text file as a binary file?

I wonder why git tells me this? $ git diff MyFile.txt diff --git a/MyFile.txt b/MyFile.txt index …

git binary