Converts a list of GBK encoded bytes to their corresponding UTF-8 encoded bytes.
List<int> gbk2utf8(List<int> gbkBytes) { return unicode2utf8(gbk2unicode(gbkBytes)); }