Skip to content

Instantly share code, notes, and snippets.

@channprj
Created December 18, 2019 13:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save channprj/beae99da372050f9861f85538aee06bc to your computer and use it in GitHub Desktop.
Save channprj/beae99da372050f9861f85538aee06bc to your computer and use it in GitHub Desktop.
# NO MORE EUC-KR
def utf8_to_euc(str):
return unicode(str, 'utf-8').encode('euc-kr')
def euckr_to_utf8(str):
return unicode(str, 'euc-kr').encode('utf-8')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment