Decodes a Dart String (UTF-16) into Unicode scalar values (code points).
List<int> codePoints(String s) => s.runes.toList(growable: false);