view bin/unidecode @ 4421:114398f3b359

<kmc> printf \'echo "$1" | /hackenv/lib/cdecl\\n\' > bin/cdecl && chmod +x bin/cdecl
author HackBot
date Sun, 09 Feb 2014 02:02:01 +0000
parents 0ea5d8e5b787
children 940c1732e450
line wrap: on
line source

#!/usr/bin/env python
import sys
import unicodedata
print u" ".join("[U+{0:04X} {1}]".format(ord(c), unicodedata.name(c, "DUNNO")) for c in " ".join(sys.argv[1:]).decode("utf-8")).encode("utf-8")