I'm making a config file that contains the map of emoji's Unicode and SoftBank Unicode. Now I'm using a python program to scrach this information from http://punchdrunker.github.com/iOSEmoji/table_html/ios6/index.html
but there is a problem , the SoftBank Code on the web page is UTF8 hex, not Unicode codepoint , how to change it to Unicode codePoint?
for example , I want to change EE9095 to E415 (the first emoji emotion)
I try to do it like this , but it just didn't work
code.decode('utf-8')
but it just didn't work, the code is the same, didn't change. the unix command iconv didn't work too