在 sql 中的 varchar 字段中存储值时获取 \u2026
我看到输入值中的最后三个尾随点正在转换为 \u2026。
例如 - SampleString... 转换为 SampleString\u2026
知道为什么会发生这种情况以及如何解决它吗?
I am seeing the last three trailing dots in my entered value is getting converted to \u2026.
Eg - SampleString... gets converted to SampleString\u2026
Any idea why this happens and how to resolve it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我怀疑末尾的点是单个 Unicode 字符(水平省略号)。
因此,如果这不仅仅是显示问题,也许您的 varchar 列分配了非 unicode 字符集?
I suspect that the dots at the end are a single Unicode character (horizontal ellipsis).
So if it's not just a display problem, maybe your varchar column has a non-unicode character set assigned?