view bin/toutf8 @ 8257:1b37449728a3

<shachaf> ` mv wisdom/usual\\ suspect{s,}
author HackBot
date Wed, 01 Jun 2016 06:25:53 +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'))