JavaScript 中混乱的字符
所以,我收到了一些文件,其中包含一堆类似这样的内容,
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找出文件保存的字符编码,然后指示编辑器使用该编码打开文件。
如果您使用的是 GNU/Linux 机器,则可以使用此命令很好地猜测编码:
这是我为那些无权访问
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:
Here's a simple page I hacked up for those who don't have access to the
file
command: http://lajm.eu/encoding/