我可以包含诸如“ã”之类的字符吗?和““xEA”是 UTF-8 编码的 XML,还是必须是 UTF-16 编码?
我可以在 UTF-8 编码的 XML 中包含“ã”和“ê”等字符,还是必须采用 UTF-16 编码?
Can I include characters such as "ã" and "ê" in UTF-8 encoded XML, or must it be UTF-16 encoded?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 UTF-8 对这些字符进行编码。
关键是保持序言(
)和实际文件编码一致。
UTF-8 的全部意义在于能够以更小的占用空间对所有 Unicode 字符进行编码。根据所有智慧的来源,wikipedia,utf-8 对每个字符点进行编码1 至 4 个字节,并向后兼容 ASCII
You can encode those characters in UTF-8.
The key is to keep the prolog (
<?xml version="1.0" encoding="utf-8" ?>
) and the actual file encoding consistent.The whole point of UTF-8 is to be able to encode all the Unicode characters in a smaller footprint. According to the source of all wisdom, wikipedia, utf-8 encodes each character point in 1 to 4 bytes, and is backwards compatible with ASCII
所有 Unicode 转换格式编码都可以对 Unicode 中的任何字符进行编码。给出的字符可在 Unicode 标准中找到。
All Unicode Transformation Format encodings can encode any character found in Unicode. The characters given are found in the Unicode standard.