Created
April 27, 2019 23:38
-
-
Save arpit/ed29aecf6a1ed73f1ab949fea189bffa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
String s = "😀 hello"; | |
s.runes.forEach((int i){ | |
String x = String.fromCharCode(i); // Get emoji as 1 string and now 2 CodePoints | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment