Skip to content

Instantly share code, notes, and snippets.

@Sfshaza
Last active February 9, 2016 17:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Sfshaza/589bc5c95318696cefe5 to your computer and use it in GitHub Desktop.
Save Sfshaza/589bc5c95318696cefe5 to your computer and use it in GitHub Desktop.
ch02
main() {
var clapping = '\u{1f44f}';
print(clapping);
print(clapping.codeUnits);
print(clapping.runes.toList());
Runes input = new Runes(
'\u2665 \u{1f605} \u{1f60e} \u{1f47b} \u{1f596} \u{1f44d}');
print(new String.fromCharCodes(input));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment