Taking what @JoostJM has said, which works, and putting it as code:
import sys
stdout = sys.stdout
reload(sys)
sys.setdefaultencoding('utf-8')
sys.stdout = stdout
Changing the default encoding directs the output to the console, this sets it back to the jupyter notebook.