vote up 4 vote down star
2

what is the difference between Big Endian byte order and little Endian Byte order.

These both are related to Unicode and UTF16

where we use this?

flag

47% accept rate
I think you can google this yourself... – Mitch Wheat Mar 31 at 15:42
en.wikipedia.org/wiki/Endianness – Mitch Wheat Mar 31 at 15:42
Don't forget about MIDDLE endian. It's on the wiki page. – Jason Punyon Mar 31 at 15:46
1  
@Mitch: the same can be said for just about any question. – Jon B Mar 31 at 15:53
@Jon B: Yes, it can, but some questions are better answered by sustained research rather than a couple of answers that some experts gave. – Cerebrus Mar 31 at 16:03

4 Answers

vote up 14 vote down check

Big Endian (BE) / Little Endian (LE) are two ways to organize multi-byte words. For example, when using two bytes to represent a character in UTF-16, there are two ways to represent the character 0x1234:

BE:  12 34
LE:  34 12

In order to decide if a text uses UTF-16BE or UTF-16LE, the specification recommends to prepend a Byte Order Mark (BOM) to the string, representing the character U+FEFF. So, if the first two bytes of a UTF-16 encoded text file are FE, FF, the encoding is UTF-16BE. For FF, FE, it is UTF-16LE.

A visual example: The word "Example" in different encodings (UTF-16 with BOM):

ASCII:     45 78 61 6d 70 6c 65
UTF-16BE:  FE FF 00 45 00 78 00 61 00 6d 00 70 00 6c 00 65
UTF-16LE:  FF FE 45 00 78 00 61 00 6d 00 70 00 6c 00 65 00

For further information, please read the Wikipedia page of Endianness and/or UTF-16.

link|flag
vote up 4 vote down

UTF-16 encodes Unicode into 16-bit values. Most modern filesystems operate on 8-bit bytes. So, to save a UTF-16 encoded file to disk, for example, you have to decide which part of the 16-bit value goes in the first byte, and which goes into the second byte.

Wikipedia has a more complete explanation.

link|flag
this answer is incorrect. endianess is related to the underlying hardware architecture – Mitch Wheat Mar 31 at 15:48
You can store a UTF-16 encoded file in either byte order regardless of the underlying hardware. – joev Mar 31 at 15:51
Given in the context of the question, this answer is perfectly acceptable IMHO – Binary Worrier Mar 31 at 15:56
@joev: Exactly. It often is related to hardware architecture, but needn't necessarily be. For cross-platform compatibility, Unicode encoders/decoders should therefore be able to use either endianness. – Noldorin Mar 31 at 15:56
vote up 0 vote down

Byte endianness (big or little) needs to be specified for Unicode/UTF-16 encoding because for character codes that use more than a single byte, there is a choice of whether to read/write the most significant byte first or last. Unicode/UTF-16, since they are variable-length encodings (i.e. each char can be represented by one or several bytes) require this to be specified. (Note however that UTF-8 "words" are always 8-bits/one byte in length [though characters can be multiple points], therefore there is no problem with endianness.) If the encoder of a stream of bytes representing Unicode text and the decoder aren't agreed on which convention is being used, the wrong character code can be interpreted. For this reason, either the convention of endianness is known beforehand or more commonly a byte order mark is usually specified at the beginning of any Unicode text file/stream to indicate whethere big or little endian order is being used.

link|flag
this answer is incorrect. endianess is related to the underlying hardware architecture – Mitch Wheat Mar 31 at 15:48
UTF-8 is a variable-length encoding, using 1-6 bytes per character and is thus not fixed to a single byte as stated here! – Ferdinand Beyer Mar 31 at 15:50
Right, so I haven't stated that endianness depends on hardware architecture, but I don't see how my answer is explicitly incorrect. Consider that text files written/read on different architectures must have their endianness known. – Noldorin Mar 31 at 15:51
@Ferdinand: You are correct - I should mention that some variants of UTF-8 do not require it... – Noldorin Mar 31 at 15:52
Sorry, you still don't got it right. There are no variants of UTF-8 that don't require multiple bytes. If you only use ASCII characters, UTF-8 will represent them using single bytes. All characters with character code >127 will be encoded using multiple bytes! – Ferdinand Beyer Mar 31 at 16:11
show 6 more comments
vote up 0 vote down

Ferdinand's answer (and others) are correct, but incomplete.

Big Endian (BE) / Little Endian (LE) have nothing to do with UTF-16 or UTF-32. They existed way before Unicode, and affect how the bytes of numbers get stored in the computer's memory. They depend on the processor.

If you have a number with the value 0x12345678 then in memory it will be represented as 12 34 56 78 (BE) or 78 56 32 12 (LE).

UTF-16 and UTF-32 happen to be represented on 2 respectively 4 bytes, so the order of the bytes respects the ordering that any number follows on that platform.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.