view bin/unicode.old @ 4598:1bc67ded06c4

<oerjan> mv paste.2 bin/paste; rm paste.1
author HackBot
date Sun, 20 Apr 2014 00:49:11 +0000
parents 9938586ddb54
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.'