Created
February 11, 2020 08:14
-
-
Save marcmorente/5c42830e65db3798772eb5f38d164c00 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| void main() { | |
| Runes sup = new Runes('\u{00B3}'); | |
| Runes sub = new Runes('\u{2083}'); | |
| print('2'+new String.fromCharCodes(sup)); | |
| print('2'+new String.fromCharCodes(sub)); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment