Skip to content

Instantly share code, notes, and snippets.

@vookimedlo
Last active December 19, 2017 22:11
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 vookimedlo/fcc0cac1bb82fae200b1cfb42e644e9e to your computer and use it in GitHub Desktop.
Save vookimedlo/fcc0cac1bb82fae200b1cfb42e644e9e to your computer and use it in GitHub Desktop.
Various Unicode Latin Number Sets
๐ŸŽ๐Ÿ๐Ÿ๐Ÿ‘๐Ÿ’๐Ÿ“๐Ÿ”๐Ÿ•๐Ÿ–๐Ÿ—
๐Ÿ˜๐Ÿ™๐Ÿš๐Ÿ›๐Ÿœ๐Ÿ๐Ÿž๐ŸŸ๐Ÿ ๐Ÿก
๐Ÿข๐Ÿฃ๐Ÿค๐Ÿฅ๐Ÿฆ๐Ÿง๐Ÿจ๐Ÿฉ๐Ÿช๐Ÿซ
๐Ÿฌ๐Ÿญ๐Ÿฎ๐Ÿฏ๐Ÿฐ๐Ÿฑ๐Ÿฒ๐Ÿณ๐Ÿด๐Ÿต
๐Ÿถ๐Ÿท๐Ÿธ๐Ÿน๐Ÿบ๐Ÿป๐Ÿผ๐Ÿฝ๐Ÿพ๐Ÿฟ
0123456789
๏ผ๏ผ‘๏ผ’๏ผ“๏ผ”๏ผ•๏ผ–๏ผ—๏ผ˜๏ผ™
โฐยนยฒยณโดโตโถโทโธโน
Python 3 Code
-------------
import sys
import textwrap
print(textwrap.fill("".join(c for c in map(chr, range(sys.maxunicode + 1)) if c.isdecimal()), 10))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment