从Instagram表情符号获取代理对

时间:2019-09-09 15:19:45

标签: python unicode python-3.7

我需要从Unicode表情符号(类似于insta的表情符号格式)中获取替代信息, 最后,我需要一些功能,可以发送带有清晰表情符号的文本,例如:

covert_func('Classic???')

并且此func需要返回如下内容:

Classic\ud83d\ude4c\ud83d\ude4c\ud83d\ude4c

我尝试了

text.encode('utf-16-le') 

但格式错误

text = 'Classic???'
print(text .encode('unicode_escape'))

输出:b'Classic\\U0001f64c\\U0001f64c\\U0001f64c'

预期:Classic\ud83d\ude4c\ud83d\ude4c\ud83d\ude4c
但得到:b'Classic\\U0001f64c\\U0001f64c\\U0001f64c'

0 个答案:

没有答案