view bin/toutf8 @ 12321:30b2601e4627 draft

<int-e> learn Economics is just applied numerology.
author HackEso <hackeso@esolangs.org>
date Fri, 20 Mar 2020 23:54:50 +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'))