schedule

Reset Schedule: 00:00 & 12:00 (GMT+7) Daily

binary

Text to Binary Converter

Convert text to binary code and binary code to text instantly

binary Binary Converter

Enter any text to convert to binary code

0 characters
Binary Preview:
Enter text above to see binary preview

Enter binary code (spaces are optional)

0 bits
Text Preview:
Enter binary code above to see text preview

ASCII Character Reference (0-127):

0: NUL
32: Space
64: @
96: `
16: DLE
48: 0
80: P
112: p
1: SOH
33: !
65: A
97: a
17: DC1
49: 1
81: Q
113: q
2: STX
34: "
66: B
98: b
18: DC2
50: 2
82: R
114: r

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)