danune 개발
encoding된 text를 바로 출력하면 이런 현상이 발생합니다 utf-8로 decode해서 출력하면 정상출력됩니다 >>> text = '한글'.encode('utf-8') >>> print(text) b'\xed\x95\x9c\xea\xb8\x80' >>> print(text.decode('utf-8')) 한글