Computers & Internet Logo

Related Topics:

Posted on Jul 22, 2011
Answered by a Fixya Expert

Trustworthy Expert Solutions

At Fixya.com, our trusted experts are meticulously vetted and possess extensive experience in their respective fields. Backed by a community of knowledgeable professionals, our platform ensures that the solutions provided are thoroughly researched and validated.

View Our Top Experts

How to convert a binary to text - Computers & Internet

2 Answers

Anonymous

Level 3:

An expert who has achieved level 3 by getting 1000 points

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

Vice President:

An expert whose answer got voted for 100 times.

  • Master 496 Answers
  • Posted on Jul 22, 2011
Anonymous
Master
Level 3:

An expert who has achieved level 3 by getting 1000 points

All-Star:

An expert that got 10 achievements.

MVP:

An expert that got 5 achievements.

Vice President:

An expert whose answer got voted for 100 times.

Joined: Jul 25, 2010
Answers
496
Questions
0
Helped
113862
Points
1447

You can use his simple online tool to convert from binary to text and vice versa.

http://www.convertbinary.com/

Anonymous

Level 1:

An expert who has achieved level 1.

New Friend:

An expert that has 1 follower.

Corporal:

An expert that has over 10 points.

Mayor:

An expert whose answer got voted for 2 times.

  • Contributor 16 Answers
  • Posted on Jul 22, 2011
Anonymous
Contributor
Level 1:

An expert who has achieved level 1.

New Friend:

An expert that has 1 follower.

Corporal:

An expert that has over 10 points.

Mayor:

An expert whose answer got voted for 2 times.

Joined: Jul 22, 2011
Answers
16
Questions
0
Helped
2577
Points
47

Letters can be converted into decimal number using ASCII table. Every Character has it own equivalent number. Once converted into decimal (base 10), I could be easily converted into binary (base 2)
You could also use applications or web based applications such as ASCII to binary converter to help you convert it.

Ad

Add Your Answer

×

Uploading: 0%

my-video-file.mp4

Complete. Click "Add" to insert your video. Add

×

Loading...
Loading...

Related Questions:

0helpful
1answer

How to write a program to translate english text to binary string and write a program to do inverse 27 = . , 28 = , 29= ? 30 = . 31=

to convert from text to binary, you would do something along the following lines..
1. have the user enter a string.
2. loop through the string (for each char in stringEntered..)
3. convert the character to binary using the methods provided to you by your language of choice

For the reverse (binary to text):
you must take 8 bits of data (which would be a single character), and convert it to text using the methods provided by your language of choice..

here's some links that might be of interest to you.
Visual FoxPro VFP CTOBIN and BINTOC Functions Equivalent In Net The Most Accurate and Reliable Source Code Converters
1helpful
2answers

Convert to binary to a decimal 111000

To convert from binary to decimal, we have to line up the numbers with the binary columns.

1 1 1 0 0 0
2^5 2^4 2^3 2^2 2^1 2^0
32 16 8 4 2 1

32 + 16 + 8 + 0 + 0+ 0 = 56

Good luck.

Paul
0helpful
1answer
0helpful
2answers

How to convert octal numbers into binary numbers

Each octal digit represents three binary digits. Simply convert each octal digit to three binary digits and string them together.

0o = 000b
1o = 001b
2o = 010b
3o = 011b
4o = 100b
5o = 101b
6o = 110b
7o = 111b

As an example, to convert 351o to binary:
3o is 011b
5o is 101b
1o is 001b
so 351o is 011101001b
1helpful
1answer

Convert hexadecimal to binary

Press 0 ALPHA [H] 0 1 0 0 1 1 1 0 MODE F2, scroll down to the "Base" line, press right-arrow, select "BIN" then press ENTER ENTER ENTER.

As a note, 01001110 looks suspiciously like a binary number.
1helpful
1answer

How to convert binary with point to decimal

1) Look at the following numbers before trying to convert binary to decimal. Each of them represent the value in a binary number from left to right.
128-64-32-16-8-4-2-1

2) Look at your binary number, for this example lets use 10010010. For each one add the corresponding number from step 1, the number you come out with is the conversion.

So: 10010010 -> 128+16+2 -> 146
10010010 = 146
2helpful
1answer

How do you convert decimal numbers into binary?

Press MODE 4 to enter the BASE-N mode. Type in the decimal number, then press BIN to convert to binary. Press DEC to switch back to decimal for the next conversion.

You're limited to numbers in the range [-32768...32767] in binary. You can extend the range if you convert to octal or hexadecimal and then mentally convert each digit to three or four bits.
1helpful
1answer

How do I convert from decimal to binary?

change your mode to binary , then enter your decimal no in dec link and then press bin link you can get the binary equivalent
Not finding what you are looking for?

231 views

Ask a Question

Usually answered in minutes!

Top Computers & Internet Experts

ADMIN Andrew
ADMIN Andrew

Level 3 Expert

73783 Answers

ADMIN Eric
ADMIN Eric

Level 3 Expert

42221 Answers

Brad Brown

Level 3 Expert

19190 Answers

Are you a Computer and Internet Expert? Answer questions, earn points and help others

Answer questions

Manuals & User Guides

Loading...