search
HomeWeb Front-endJS TutorialJS file itself encoding conversion graphic tutorial_javascript skills

After searching on Baidu and Google, everyone said that encoding problems can be solved through JAVA background processing. I would like to ask, can this solve the encoding problem of the JS file itself?

The reason why the encoding issue of the JS file itself is raised is because the encoding of the JS file is different, resulting in Chinese characters being displayed as garbled characters.

Usually, when you create a JS file (containing Chinese) in Eclipse, the Chinese you see in the Eclipse editor is normal, but when displayed on the web page, it is garbled, and all my pages use UTF-8. Encoding, for this reason, I thought that this may be caused by the encoding problem of the JS file itself.


In Eclipse, the Chinese in the JS file displays normally


On the web page, Chinese characters are displayed as garbled characters

I thought that this might be caused by the encoding problem of the JS file itself, which is actually correct. A small tool is used here, called NotePad2, which translates to the first generation of Notepad. This small tool is easy to use, green and requires no installation. It can completely replace the Notepad software that comes with the Windows system. Its download address is: http://download.csdn.net/source/1732849

Open the JS file with NotePad2, check the encoding of the JS file, and find that the encoding of the JS file is ANSI. The ANSI encoding uses 2 bytes in the range of 0x80~0xFF to represent one character. For example, the Chinese character "中" is stored using the two bytes [0xD6, 0xD0] in the Chinese operating system. However, different countries and regions have formulated different ANSI standards, making different ANSI codes incompatible with each other. As we all know, in China, the encoding of the browser is either GBK or GB2312 encoding, or UTF8 encoding. When the Chinese encoded in ANSI is sent to the web page, it will naturally appear as garbled characters, so this is the root of the problem.

Use NotePad2 software to convert the encoding of JS files into UTF-8 encoding, because UTF-8 encoding is a universal encoding for computers and can support languages ​​​​and texts in almost all countries or regions, and the browser itself supports UTF-8 encoding .

OK, let’s take a look at the effect on the browser. Obviously, the Chinese display is normal and the garbled code problem is solved. It is not like "using the encodeURIComponent or encodeURI method in JS" as said on the Internet. It is complicated and difficult to understand, and requires complicated programming. It is really not advisable.

After my testing, whether I use a new text document and change the extension to .js, or a JS file created with other software or tools, I use NotePad2 software to open it and check the encoding. I find that the encoding of the JS file is ANSI. So I guess, is the default encoding of JS files is ANSI encoding? Of course, I have not verified this, and there is no relevant information on the Internet that can prove that the default encoding of JS files is ANSI encoding. It is just a personal guess.

But, at least, if the Chinese in the JS file is displayed as garbled characters on the web page, you might as well try the method in this article, which may solve the headache.

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
如何在电脑上输入下划线如何在电脑上输入下划线Feb 19, 2024 pm 08:36 PM

电脑下划线怎么打在电脑输入文字时,我们经常需要使用下划线来突出某些内容或进行标记。然而,对于一些不太熟悉电脑输入法的人来说,打出下划线可能会有些困惑。本文就将向大家介绍如何在电脑上打出下划线。在不同的电脑操作系统和软件中,输入下划线的方式可能会稍有不同。下面将分别介绍Windows操作系统和Mac操作系统上的常用方法。首先,我们先来看一下在Windows操作

探究golang编码转换的实现机制探究golang编码转换的实现机制Feb 19, 2024 pm 03:21 PM

Golang作为一种强大的编程语言,具有较高的性能和并发能力,同时也提供了丰富的标准库支持,其中包括了对编码转换的支持。本文将深入探讨Golang中编码转换的实现原理,并结合具体的代码示例进行分析。什么是编码转换?编码转换指的是将一个字符序列从一种编码转换为另一种编码的过程。在实际的开发中,我们经常需要处理不同编码之间的转换,比如将UTF-8编码的字符串转换

简单学习dedecms编码转换功能的方法简单学习dedecms编码转换功能的方法Mar 14, 2024 pm 02:09 PM

学习dedecms编码转换功能并不复杂,通过简单的代码示例,可以帮助您快速掌握这一技能。在dedecms中,编码转换功能通常用于处理中文乱码、特殊字符等问题,确保系统的正常运行和数据的准确性。下面将详细介绍如何使用dedecms的编码转换功能,让您轻松应对各种编码相关的需求。1.UTF-8转GBK在dedecms中,如果需要将UTF-8编码的字符串转换为G

如何处理C++开发中的编码转换问题如何处理C++开发中的编码转换问题Aug 22, 2023 am 11:07 AM

如何处理C++开发中的编码转换问题在C++开发过程中,经常会遇到需要处理不同编码之间转换的问题。由于不同的编码格式之间存在差异,因此在进行编码转换时需要注意一些细节。本文将介绍如何处理C++开发中的编码转换问题。一、了解不同编码格式在处理编码转换问题之前,首先需要了解不同的编码格式。常见的编码格式有ASCII、UTF-8、GBK等。ASCII是最早的编码格式

PHP所支持的编码及转换方法PHP所支持的编码及转换方法Jun 23, 2023 am 11:46 AM

PHP是一种脚本语言,广泛应用于Web开发,尤其是服务器端程序开发。在Web开发过程中,编码问题是非常重要的一环,解决编码问题需要掌握PHP所支持的编码及转换方法。本文将介绍PHP所支持的主要编码类型和转换方法。一、编码类型在Web开发过程中,常用的编码类型有以下几种:1.ASCII编码ASCII码是美国信息交换标准代码,可以表示127个字符,包含数字、字

dedecms编码转换插件的使用方法dedecms编码转换插件的使用方法Mar 14, 2024 pm 06:03 PM

《DedeCMS编码转换插件的使用方法,需要具体代码示例》DedeCMS是一款功能强大、易于使用的开源内容管理系统,广泛应用于各类网站建设中。在使用DedeCMS的过程中,有时会碰到需要对内容进行编码转换的情况,特别是在处理多语言网站或者涉及到不同编码的数据时。为了简化这一操作,DedeCMS提供了编码转换插件,可以轻松实现对内容的编码转换,提高网站的灵活性

MySql的Ascii和UTF-8编码:如何压缩和转换MySQL的字符编码MySql的Ascii和UTF-8编码:如何压缩和转换MySQL的字符编码Jun 16, 2023 pm 12:07 PM

在MySQL数据库中,字符编码是非常重要的一个概念。字符编码指的是将字符映射成二进制数据的方式。MySQL中支持的字符编码种类有多种,最常用的是Ascii编码和UTF-8编码。这两种字符编码在MySQL中起到了非常重要的作用,因为MySQL中的数据是以字符形式存储的,而字符编码的选择可能会影响到数据库的性能和空间。Ascii编码是一种基于拉丁字母的编码方式,

在Go语言中使用MySQL实现数据的编码转换在Go语言中使用MySQL实现数据的编码转换Jun 17, 2023 pm 08:18 PM

随着全球化的发展,不同语言和文化之间的交流变得越来越频繁和紧密。由此带来的问题是,不同语言和文化之间的字符编码也开始变得复杂多样。在处理各种数据时,我们需要进行编码转换,以确保数据的正确性和一致性。在Go语言中,我们可以使用MySQL来实现数据的编码转换。本文将详细介绍如何在Go语言中使用MySQL实现数据的编码转换。一、Go语言中的字符编码和MySQL中的

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use