view bin/toutf8 @ 1726:03235350a0e4

<oerjan> addquote <Sgeo> Actually, just as a guess, J might be worse than APL because it\'s restricted to normal (ascii?) characters, I guess
author HackBot
date Thu, 24 Jan 2013 23:18:27 +0000
parents e037173e0012
children
line wrap: on
line source

#!/usr/bin/python
import sys
import chardet
x = sys.stdin.read()
enc = chardet.detect(x)['encoding']
sys.stdout.write(x.decode(enc).encode('UTF-8'))