Character Set and Character Encoding

Character Set

Character set is a map of characters and numbers(ascii code, code point).

ASCII

  • American Standard Code for Information Interchange
  • Map Latin characters to ASCII code (eg: A->0x41, a-> 0x61)
  • 0 - 31 and 127 are Device Control Characters
  • 32 - 126 are Printable Characters
  • 0x00 - 0x7F
ASCII Table.png

GB

GB2312 -> GBK -> GB18030

Unicode

  • Map ALL characters in ALL languages to a unique number(a code point)
  • 0x0000-0x10FFFF
  • 17 Planes, 65536 code points in each plane
  • Sample Chinese characters in BMP 0x4E00-0x9FBF
Sample Chinese characters in BMP (0x4E00-0x9FBF)
Plane Name Range
Plane 0 Basic Multilingual Plane (BMP) 0x0000-0xFFFF
Plane 1 Supplementary Multilingual Plane 0x10000-0x1FFFF
Plane 2 Supplementary Ideographic Plane 0x20000-0x2FFFF
Plane 3 Tertiary Ideographic Plane (unassigned) 0x30000-0x3FFFF
Plane 4-13 unassigned 0x40000-0xDFFFF
Plane 14 Supplement-ary Special-purpose Plane 0xE0000-0xEFFFF
Plane 15 Supplement-ary Private Use Area planes - A 0xF0000-0xFFFFF
Plane 16 Supplement-ary Private Use Area planes - B 0x100000-0x10FFFF

Character Encoding

Character set translate characters to numbers, character encoding translate numbers into binary.

UTF-8

  • Unicode Transformation Format 8 bits
  • Variable width(1-4 bytes) character encoding
  • Backward compatible with ASCII
  • Chinese characters (0x0800-0xFFFF) are encoded to 3 bytes
Code Point Range UTF-8 binary
0x00-0x7F 0xxxxxxx
0x80-0x07FF 110xxxxx 10xxxxxx
0x0800-0xFFFF 1110xxxx 10xxxxxx 10xxxxxx
0x10000-0x10FFFF 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx

UTF-16

  • Unicode Transformation Format 16 bits
  • Variable width(2 or 4 bytes) character encoding
  • Characters in BMP are encoded to 2 bytes
  • Characters in Plane1-16 are encoded to 4 bytes
  • Byte Order Mark(BOM)
    • 0xFEFF big-ending BE
    • 0xFFFE little-ending LE
Plane Code Point Range UTF-16 binary
Plane0(BMP) 0x0000-0xFFFF xxxxxxxx xxxxxxxx
Plane1 0x10000-0x1FFFF 11011000 00xxxxxx 110111xx xxxxxxxx
Plane2 0x20000-0x2FFFF 11011000 01xxxxxx 110111xx xxxxxxxx
... ... 110110pp ppxxxxxx 110111xx xxxxxxxx
Plane15 0xF0000-0xFFFFF 11011011 10xxxxxx 110111xx xxxxxxxx
Plane16 0x100000-0x10FFFF 11011011 11xxxxxx 110111xx xxxxxxxx

UTF-32

  • Unicode Transformation Format 32 bits
  • Fixed width(4 bytes) character encoding
Code Point Range UTF-32 binary
0x0000-0x10FFFF 00000000 000xxxxx xxxxxxxx xxxxxxxx

Practise in Java

import java.nio.ByteBuffer;
import java.nio.charset.Charset;
import java.util.ArrayList;
import java.util.List;

public class CharacterTest {
    private static final Charset UTF8 = Charset.forName("UTF-8");
    private static final Charset UTF16_BE = Charset.forName("UTF-16BE");
    private static final Charset UTF32 = Charset.forName("UTF-32");
    private static final List<Charset> charsets = new ArrayList();

    static {
        charsets.add(UTF8);
        charsets.add(UTF16_BE);
        charsets.add(UTF32);
    }

    public static void main(String[] args) {
        printCharacter("A");
        printCharacter("?");
        printCharacter("一");
        printCharacter("??");
    }

    /**
     * Print Code Points of str
     * Print str encoded by utf-8,utf-16,utf-32
     *
     * @param str
     */
    private static void printCharacter(String str) {
        str.codePoints().forEach((s) ->
                System.out.format("%10s%40s\n", "Code Point", "0x " + Integer.toHexString(s).toUpperCase() + " "));

        charsets.forEach((charset -> {
            ByteBuffer byteBuffer = charset.encode(str);
            System.out.format("%10s%40s\n", charset.name(), byteBufferToHexString(byteBuffer));
            System.out.format("%10s%40s\n", charset.name(), byteBufferToBinaryString(byteBuffer));

        }));
        System.out.println();
    }

    /**
     * ByteBuffer to hexadecimal string
     *
     * @param byteBuffer
     * @return
     */
    private static String byteBufferToHexString(ByteBuffer byteBuffer) {
        StringBuilder hexString = new StringBuilder("0x ");
        byteBuffer.rewind();

        while (byteBuffer.hasRemaining()) {
            int i = Byte.toUnsignedInt(byteBuffer.get());
            hexString.append(padZeros(Integer.toHexString(i), 2));
        }
        return hexString.toString();
    }


    /**
     * ByteBuffer to binary string
     *
     * @param byteBuffer
     * @return
     */
    private static String byteBufferToBinaryString(ByteBuffer byteBuffer) {
        StringBuilder binaryString = new StringBuilder("0b ");
        byteBuffer.rewind();

        while (byteBuffer.hasRemaining()) {
            int i = Byte.toUnsignedInt(byteBuffer.get());
            binaryString.append(padZeros(Integer.toBinaryString(i), 8));
        }
        return binaryString.toString();
    }

    /**
     * Pad len-str 0(s) to the left of str.
     *
     * @param str
     * @param len
     * @return
     */
    private static String padZeros(String str, int len) {
        int numOfZeros = len - str.length();
        StringBuilder stringBuilder = new StringBuilder();
        for (int i = 0; i < numOfZeros; i++) {
            stringBuilder.append("0");
        }
        stringBuilder.append(str.toUpperCase()).append(" ");
        return stringBuilder.toString();
    }
}

Character encoded in UTF-8/16/32

Character Code Point UTF-8 UTF-16 UTF-32
A 0x41 01000001
0x41
00000000 01000001
0x00 41
00000000 00000000 00000000 01000001
0x00 00 00 41
? 0xBC 11000010 10111100 00000000 10111100
0x00 BC
00000000 00000000 00000000 10111100
0x00 00 00 BC
0x4E00 11100100 10111000 10000000 01001110 00000000
0x4E 00
00000000 00000000 01001110 00000000
0x00 00 4E 00
?? 0x20021 11110000 10100000 10000000 10100001 11011000 01000000 11011100 00100001 00000000 00000010 00000000 00100001
0x00 02 00 21

Reference

Unicode Wiki
Unicode code points
Unicode lookup
SOF - Unicode UTF-8 UTF-16
cnblogs - Unicode UTF-8 UTF-16

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末挡闰,一起剝皮案震驚了整個(gè)濱河市小泉,隨后出現(xiàn)的幾起案子谆吴,更是在濱河造成了極大的恐慌寇窑,老刑警劉巖,帶你破解...
    沈念sama閱讀 219,427評(píng)論 6 508
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件垫言,死亡現(xiàn)場(chǎng)離奇詭異粘昨,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)抄伍,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 93,551評(píng)論 3 395
  • 文/潘曉璐 我一進(jìn)店門艘刚,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人截珍,你說我怎么就攤上這事攀甚。” “怎么了岗喉?”我有些...
    開封第一講書人閱讀 165,747評(píng)論 0 356
  • 文/不壞的土叔 我叫張陵秋度,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我钱床,道長(zhǎng)荚斯,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 58,939評(píng)論 1 295
  • 正文 為了忘掉前任诞丽,我火速辦了婚禮鲸拥,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘僧免。我一直安慰自己刑赶,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 67,955評(píng)論 6 392
  • 文/花漫 我一把揭開白布懂衩。 她就那樣靜靜地躺著撞叨,像睡著了一般。 火紅的嫁衣襯著肌膚如雪浊洞。 梳的紋絲不亂的頭發(fā)上牵敷,一...
    開封第一講書人閱讀 51,737評(píng)論 1 305
  • 那天,我揣著相機(jī)與錄音法希,去河邊找鬼枷餐。 笑死,一個(gè)胖子當(dāng)著我的面吹牛苫亦,可吹牛的內(nèi)容都是我干的毛肋。 我是一名探鬼主播怨咪,決...
    沈念sama閱讀 40,448評(píng)論 3 420
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼润匙!你這毒婦竟也來了诗眨?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 39,352評(píng)論 0 276
  • 序言:老撾萬榮一對(duì)情侶失蹤孕讳,失蹤者是張志新(化名)和其女友劉穎匠楚,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體厂财,經(jīng)...
    沈念sama閱讀 45,834評(píng)論 1 317
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡芋簿,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 37,992評(píng)論 3 338
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了蟀苛。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片益咬。...
    茶點(diǎn)故事閱讀 40,133評(píng)論 1 351
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖帜平,靈堂內(nèi)的尸體忽然破棺而出幽告,到底是詐尸還是另有隱情,我是刑警寧澤裆甩,帶...
    沈念sama閱讀 35,815評(píng)論 5 346
  • 正文 年R本政府宣布冗锁,位于F島的核電站,受9級(jí)特大地震影響嗤栓,放射性物質(zhì)發(fā)生泄漏冻河。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 41,477評(píng)論 3 331
  • 文/蒙蒙 一茉帅、第九天 我趴在偏房一處隱蔽的房頂上張望叨叙。 院中可真熱鬧,春花似錦堪澎、人聲如沸擂错。這莊子的主人今日做“春日...
    開封第一講書人閱讀 32,022評(píng)論 0 22
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽钮呀。三九已至,卻和暖如春昨凡,著一層夾襖步出監(jiān)牢的瞬間爽醋,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 33,147評(píng)論 1 272
  • 我被黑心中介騙來泰國(guó)打工便脊, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留蚂四,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 48,398評(píng)論 3 373
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像证杭,于是被迫代替她去往敵國(guó)和親田度。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 45,077評(píng)論 2 355

推薦閱讀更多精彩內(nèi)容