view bin/unidecode @ 12332:4be08e8c2b14 draft

<b_jonas> le/rn_append california//. WARNING: The area of California is made of chemicals known to the State of California to cause cancer and birth defects or other reproductive harm.
author HackEso <hackeso@esolangs.org>
date Fri, 29 May 2020 17:06:20 +0000
parents c3351169a617
children
line wrap: on
line source

#!/usr/bin/env python
import os, sys
import unicodedata
s = 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")
if u"DUNNO" in s:
  os.execvp("singlecode", ["singlecode"] + sys.argv[1:])
else:
  print s