Skip to content

Instantly share code, notes, and snippets.

@marcmorente
Created February 11, 2020 08:14
Show Gist options
  • Select an option

  • Save marcmorente/5c42830e65db3798772eb5f38d164c00 to your computer and use it in GitHub Desktop.

Select an option

Save marcmorente/5c42830e65db3798772eb5f38d164c00 to your computer and use it in GitHub Desktop.
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