answersLogoWhite

0


Best Answer

It depends how you want to encode it. Encoding as 8-bit ASCII (ISO/IEC/8859 or ISO-8859-1) it will be:

0x6920616d20736576656e00

Note the 0x00 at the end is the null terminator. Total length is 11 bytes.

However, you will probably want to replace the lowercase 'i' with an uppercase 'I' (in all version of English, the singular first person noun 'I' is always capitalised), in which case the encoding would be:

0x4920616d20736576656e00

Encoding as 16-bit UNICODE is the same except each byte is padded with 8 zero bits (0x00) and a BOM (byte-order mark) is inserted at the front to ensure correct interpretation. In big-endian notation, the binary value would be:

0xfeff004900200061006d00200073006500760065006e0000

In little-endian notation, it would be:

0xfffe4900200061006d00200073006500760065006e000000

Similarly with 32-bit UNICODE, padding with another 16 zero bits along with a 32-bit BOM:

32-bit big-endian:

0x0000feff0000004900000020000000610000006d00000020000000730000006500000076000000650000006e00000000

32-bit little-endian:

0xfffe0000004900000020000000610000006d00000020000000730000006500000076000000650000006e000000000000

There are many other ways to encode text. This is primarily due to the wide variety of character sets available to cater for foreign languages and other symbols. It is also possible to use compression encodings, cipher encodings and encrypted encodings. But in order to interpret these encodings correctly you would need to know precisely how it was encoded, in the same way a BOM tells the decoder how to correctly interpret the byte order.

User Avatar

Wiki User

7y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

15y ago

the binary code of seventeen is 10001

This answer is:
User Avatar

User Avatar

Danny Wei

Lvl 2
1y ago

10001

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the binary code for seventeen?
Write your answer...
Submit
Still have questions?
magnify glass
imp