gbk2utf8 function

List<int> gbk2utf8(
  1. List<int> gbkBytes
)

Converts a list of GBK encoded bytes to their corresponding UTF-8 encoded bytes.

Implementation

List<int> gbk2utf8(List<int> gbkBytes) {
  return unicode2utf8(gbk2unicode(gbkBytes));
}