English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Happy...now you're number one!

2007-07-10 14:31:52 · 3 answers · asked by ... 2 in Computers & Internet Programming & Design

3 answers

The binary version of the ASCII text is:

1001000
1100001
1110000
1110000
1111001
0101110
0101110
0101110
1101110
1101111
1110111
0100000
1111001
1101111
1110101
0100111
1110010
1100101
0100000
1101110
1110101
1101101
1100010
1100101
1110010
0100000
1101111
1101110
1100101
0100001

Each line is one of the characters from "Happy...now you're number one!"

Annotated

1001000 H
1100001 a
1110000 p
1110000 p
1111001 y
0101110 .
0101110 .
0101110 .
1101110 n
1101111 o
1110111 w
0100000
1111001 y
1101111 o
1110101 u
0100111 '
1110010 r
1100101 e
0100000
1101110 n
1110101 u
1101101 m
1100010 b
1100101 e
1110010 r
0100000
1101111 o
1101110 n
1100101 e
0100001 !

And here's the Java program I used to produce it:

String s = "Happy...now you're number one!";
for (int i=0; i System.out.println( Integer.toString( s.charAt(i), 2));

2007-07-10 14:44:26 · answer #1 · answered by McFate 7 · 2 0

This question may need some more details. Are you trying to convert these characters from ascii to binary, unicode to binary, etc....?

2007-07-10 21:38:55 · answer #2 · answered by tpennetta 2 · 0 0

01001000 01100001 01110000 01110000 01111001 10000101 00100000 01001110 01101111 01110111 00100000 01111001 01101111 01110101 00100111 01110010 01100101 00100000 01101110 01110101 01101101 01100010 01100101 01110010 00100000 01101111 01101110 01100101 00100001

2007-07-10 21:40:46 · answer #3 · answered by serialcoyote 4 · 0 0

fedest.com, questions and answers