我正在尝试从salesforce中提取数据,但在阅读ascii字符时遇到一些问题。例如 salesforce db中的原始值
6 articles, plus 2 pieces of content labeled \u201cexpert answers\u201d
我在python中获得的价值
UnicodeEncodeError: 'ascii' codec can't encode character u'\u201c' in position 45: ordinal not in range(128)
似乎双引号被转换为ascii。当我尝试在python str()方法中包装上面的字符串时,它会抛出以下错误
while (cin >> r >> n, r || n) {
// code
}
有什么方法可以将此ascii转换为原始值以将其保存在我的数据库中?