diff bin/unicode @ 4531:7f957c1f4661

<oerjan> revert
author HackBot
date Sun, 16 Mar 2014 01:52:15 +0000
parents
children 6d2e9d293bda
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bin/unicode	Sun Mar 16 01:52:15 2014 +0000
@@ -0,0 +1,10 @@
+#!/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.'