view bin/toutf8 @ 11137:e5f20b9a7f52

<oerjan> learn The degeneration is the generation that watches the Ellen DeGeneres show. See also degenerate.
author HackBot
date Fri, 28 Jul 2017 01:39:23 +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'))