binary
Text to Binary Converter
Convert text to binary code and binary code to text instantly
binary Binary Converter
help_outline Understanding Binary Code
What is Binary Code?
Binary code is a base-2 number system that uses only two digits: 0 and 1. Each digit represents a single "bit" of information. In computing, binary is used to represent all data and instructions.
How Text to Binary Works
- looks_one Each character is converted to its ASCII decimal value
- looks_two Decimal value is converted to 8-digit binary
- looks_3 Binary digits represent the character
lightbulb
Example:
'A' → 65 → 01000001
'AB' → 65 66 → 01000001 01000010
Common Binary Uses
- memory Computer memory addresses
- settings_ethernet Network communication
- storage File encoding
- code Programming and development
info
Bit Grouping:
Binary code is often grouped in sets of 8 bits (called a "byte") for easier reading and storage.
calculate Simple Binary Math Examples
Addition
5 (101) + 3 (011)
= 8 (1000)
Subtraction
10 (1010) - 3 (011)
= 7 (0111)
Multiplication
5 (101) × 3 (011)
= 15 (1111)
Division
12 (1100) ÷ 3 (011)
= 4 (100)