标签: r shiny
我有一个返回表情符号的服务,这是格式
line =
我想将其转换为unicode \xed\xa0\xbd\xed\xb8\x84 ,这样我最终可以使用它来获取表情符号的html编码,以显示在闪亮的应用上。
\xed\xa0\xbd\xed\xb8\x84
\U0001f601
[1]“?”
或者,如果有办法从stri_trans_general("\U0001f601", "[^\\u0000-\\u007f] any-hex/xml") 转到\xed\xa0\xbd\xed\xb8\x84也可以。
stri_trans_general("\U0001f601", "[^\\u0000-\\u007f] any-hex/xml")