Skip to content

Instantly share code, notes, and snippets.

@ifduyue
Created November 18, 2011 16:11
Show Gist options
  • Save ifduyue/1376898 to your computer and use it in GitHub Desktop.
Save ifduyue/1376898 to your computer and use it in GitHub Desktop.
mb_code.py
def mb_code(string, coding="utf-8"):
if isinstance(string, unicode):
return string.encode(coding)
for c in ('utf-8', 'gb2312', 'gbk', 'gb18030', 'big5'):
try:
return string.decode(c).encode(coding)
except: pass
return string
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment