view bin/unicode @ 4520:60f7c3d7e415

<fizzie> sed -i -e \'s/{1,4}/{1,5}/\' bin/unicode # well in that case!
author HackBot
date Sat, 08 Mar 2014 11:00:56 +0000
parents 68b049bc9d4e
children
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.'