view bin/unicode @ 4566:1b161db44445

<fizzie> mv data/8ballreplies share/; sed -i -e \'s/data/share/\' bin/8*ball; rmdir data # going to hit some empty-directory problem again, I\'m sure
author HackBot
date Tue, 15 Apr 2014 10:28:33 +0000
parents 7f957c1f4661
children 6d2e9d293bda
line wrap: on
line source

#!/usr/bin/env python
# -*- encoding: utf-8 -*-
import re
import sys
import unicodedata
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))
try:
    print u''.join(map(l, sys.argv[1:])).encode('utf-8')
except KeyError:
    print u'Unknown character.'