로그중에 u'\ucc98\ub9ac' 이런식의 시퀀스가 보이면, 그냥 긁어서 다음과 같이하면 보인다
>>print(u'\ucc98\ub9ac')
처리
hex와 euc-kr/utf-8 변환에는 다음 사이트가 좋다.
https://r12a.github.io/app-encodings/
로그중에 "\353\224\224\354\226\264\353\270\214\353\240\210\353\223\234" 이런형식의 시퀀스가 보이면 다음처럼 해보면 된다.
>>> a = "\353\224\224\354\226\264\353\270\214\353\240\210\353\223\234"
>>> print(a.encode('latin1').decode('utf-8'))
디어브레드
>>> print(a.encode('latin1').decode('utf-8'))
디어브레드
반응형
'Programming > Python' 카테고리의 다른 글
venv (0) | 2023.12.17 |
---|---|
mypy / pytype (1) | 2023.10.07 |
Python GUI Programming(Tkinter) (0) | 2021.01.02 |
파이선환경 그리고 requirements.txt (0) | 2020.09.20 |
Google Colab(Colaboratory Lab) 팁 (0) | 2019.03.07 |