Skip to content

Instantly share code, notes, and snippets.

@whosaysni
Created June 8, 2013 03:31
Show Gist options
  • Save whosaysni/5733902 to your computer and use it in GitHub Desktop.
Save whosaysni/5733902 to your computer and use it in GitHub Desktop.
外字領域から256文字
# coding: utf-8
import sys
offset = 0xe000
sys.stdout.write(('|'.join([unichr(offset+i) for i in range(256)])).encode('utf-8'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment