数字の絵文字はUNICODEでは3バイトになる 後半の2バイト(\ufe0f\u20e3の部分)は共通 先頭の1バイトが \u0030~ \u0039で絵文字の0~9に対応している pythonで文字列中に出てくる数字の絵文字を普通の数字に変換する方法 def trans_emoji_digit(text): text = text.replace('\u0030\ufe0f\u20e3', '0') text = text.replace('\u0031\ufe0f\u20e3', '1') text = text.replace('\u0032\ufe0f\u20e3', '2') text = text.replace('\u0033\ufe0f\u20e3', '3') text = text.replace('\u0034\ufe0f\u20e3', '4') text = te