encoding form | Endianness | S0 | S1 | S2 | S3 |
---|---|---|---|---|---|
UTF-32 | be | 0x00 | 0x00 | 0x20 | 0x60 |
le | 0x60 | 0x20 | 0x00 | 0x00 | |
UTF-16 | be | 0x20 | 0x60 | ||
le | 0x60 | 0x20 | |||
UTF-8 | 0xE2 | 0x81 | 0xA0 |
But you'd be surprised how few programs support this vital unicode feature. Try getting Japanese to wrap between words in a .NET Winforms control.