Skip to content

Instantly share code, notes, and snippets.

@jhedev
Created May 29, 2014 14:14
Show Gist options
  • Save jhedev/2127838b7860a264c57a to your computer and use it in GitHub Desktop.
Save jhedev/2127838b7860a264c57a to your computer and use it in GitHub Desktop.
Print fancy unicode characters
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
start = 0x0001F300
while start < 0x1F58E:
print(hex(start), chr(start))
start+=1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment