view bin/unicode @ 5186:11b7f091967f

<Jafet> ` echo "<Jessicatz> you play too much nethack when: you look down both sides of the corridor, start to sweat and then realize you\'re looking at your email address" >wisdom/nethack
author HackBot
date Thu, 11 Dec 2014 15:25:16 +0000
parents ce1b04b0db07
children
line wrap: on
line source

#!/usr/bin/env python
# -*- encoding: utf-8 -*-
import re
import sys, os
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:
    os.execvp("multicode", ["multicode"] +sys.argv[1:])