我正在使用微软机器人框架实现一个机器人,需要添加一个包含特殊字符的适配卡。
这是我的适配卡的一个示例:
{
"type": "AdaptiveCard",
"body": [
{
"type": "TextBlock",
"size": "Large",
"weight": "Bolder",
"color": "Good",
"text": "Satisfacción"
},
...
],
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.0"
}你可以在单词"Satisfacción“中的元音"ó”中看到重音符号。
当我在机器人模拟器中使用机器人时,"ó“出现问题:
如何将utf8编码添加到适配卡?
发布于 2019-04-02 00:10:16
谢谢,我可以用"unicode (utf-8 with with )- Codepage 65001“解决保存文件的错误。
Select unicode (utf-8 with signature) - Codepage 65001
感谢@Steven Kanberg的更正
https://stackoverflow.com/questions/55386814
复制相似问题