comparison bin/unicode @ 4531:7f957c1f4661

<oerjan> revert
author HackBot
date Sun, 16 Mar 2014 01:52:15 +0000
parents
children 6d2e9d293bda
comparison
equal deleted inserted replaced
4530:03afb1619ef2 4531:7f957c1f4661
1 #!/usr/bin/env python
2 # -*- encoding: utf-8 -*-
3 import re
4 import sys
5 import unicodedata
6 def l(c): m = re.match('(?:U+)?([0-9a-f]{1,5})$', c, re.I); return unicodedata.lookup(c) if m is None else unichr(int(m.group(1),16))
7 try:
8 print u''.join(map(l, sys.argv[1:])).encode('utf-8')
9 except KeyError:
10 print u'Unknown character.'