Dart Codeunits
void main() {
String str = "Hello";
print(str.codeUnits);
}
Shadow
void main() {
String str = "Hello";
print(str.codeUnits);
}