JavaScript 中混乱的字符

发布于 2024-11-05 16:11:26 字数 160 浏览 0 评论 0原文

所以,我收到了一些文件,其中包含一堆类似这样的内容,

var time=0;//ÓÎϷʱ¼ä

显然,评论对应于我想阅读的内容,但它很混乱,我不知道为什么。

1) 我如何阅读这篇文章

2) 我如何避免它

So, I have a few files sent to me which contain a bunch of stuff like this

var time=0;//ÓÎϷʱ¼ä

Obviously, the comment corresponds to something, which I'd like to read, but it's messed up and I don't know why.

1) How do I read this

2) How do I avoid it

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

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

发布评论

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

评论(1

风追烟花雨 2024-11-12 16:11:26

找出文件保存的字符编码,然后指示编辑器使用该编码打开文件。

如果您使用的是 GNU/Linux 机器,则可以使用此命令很好地猜测编码:

file -i file.js

这是我为那些无权访问 file 命令的人编写的一个简单页面:http://lajm.eu/encoding/

Find out which character encoding the file is saved in, then instruct your editor to open the file using that encoding.

If you're on a GNU/Linux box, you can get a good guess at the encoding using this command:

file -i file.js

Here's a simple page I hacked up for those who don't have access to the file command: http://lajm.eu/encoding/

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