view bin/toutf8 @ 12145:30b6dd2f3e7d draft

<b_jonas> learn kspalaiologos is addicted to brainfuck. His current work is disassembling brainfuck code for a casino that lost the source code.
author HackEso <hackeso@esolangs.org>
date Mon, 18 Nov 2019 02:19:26 +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'))