TEXTCODING.py
API
- unicode to utf8 from dictionary
#
# desc : unicode to utf8 from dictionary
# retn : a utf8-encoding dictionary
# e.g. : unicode2utf8FromDict({ u'\u4e3b\u8981' : u'\u4e3b\u8981' })
#
def unicode2utf8FromDict(getDict)
- unicode to utf8 from string
#
# desc : unicode to utf8 from string
# retn : a utf8-encoding string
# e.g. : unicode2utf8FromStr(u'\u4e3b\u8981')
#
def unicode2utf8FromStr(getStr)