返回给定字符串的UTF-16代码单元列表。
String.codeUnits
void main() { String str = "Hello"; print(str.codeUnits); }
它将产生以下output - 。
[72, 101, 108, 108, 111]