view bin/toutf8 @ 9032:70f188fce734

<oerjan> learn HILTER is what happens when someone combines argumentum ad hitlerum, shouting, and muphry\'s law in one glorious clusterfuck.
author HackBot
date Tue, 13 Sep 2016 02:15:31 +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'))