view bin/toutf8 @ 3288:17cab1607a35

<shachaf> pastelogs <zzo38>.*please
author HackBot
date Sun, 07 Jul 2013 00:10:18 +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'))