通过格式化将 ASCII 文本转换为 Unicode

发布于 2024-11-27 10:58:22 字数 1459 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

ま柒月 2024-12-04 10:58:22

iconv 可以在不同的编码之间进行转换,如果您愿意的话意思是。

iconv can convert between different encodings, if that's what you mean.

墨小沫ゞ 2024-12-04 10:58:22

当然,它被称为 cat

cat myasciifile > myunicodefile

现在 myunicodefile 由 unicode 代码点组成,以流行的 UTF8 编码进行编码。请注意,这假设 myasciifile 仅包含合法的 ASCII 字符(即在 0-127 范围内)。

另一种方法是 cp。

Sure, it's called cat:

cat myasciifile > myunicodefile

Now myunicodefile consists of unicode codepoints, encoded in the popular UTF8 encoding. Note that this assumes that myasciifile consists only of legal ASCII characters (i.e. in the range 0-127).

An alternative to this is cp.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文