List<int> list = 'hello'.codeUnits;Uint8List bytes = Uint8List.fromList(list);String string = String.fromCharCodes(bytes);print(string);
確定! 回上一頁