How to convert Chinese into UTF-8 in HTML

How to convert Chinese into UTF-8 in HTML

In HTML, the Chinese phrase “學好好學” can be expressed as “學好好學”

In the project, SMS alarms need to be connected, and the data returned by SMS alarms must be in utf8

After further communication, I found out that what was needed was html-utf8;

No suitable golang toolkit was found. The packages involved in language transcoding are mainly

mahonia, supports data conversion in various formats, gbk, utf8, gb2312

net/html, supports web page transcoding, which changes the conversion of <,>,&,',',.

Based on online experience, three versions of conversion are provided:

Javascript

function ConvUtf8(obj) {
returnobj.replace(/[^\u0000-\u00FF]/g,function($0) {returnescape($0).replace(/(%u)(\w{4})/gi, "&#x$2;") });
}

JAVA

public static String UTF8_html_conv(String str){
StringBuffer stbPreemptionArg = new StringBuffer();
for(int i = 0;i<str.length();i++){
if (str.codePointAt(i) > 255){
stbPreemptionArg.append("&#x"+Integer.toString(str.charAt(i), 16)+";");
}else{
stbPreemptionArg.append(str.charAt(i));
}
}
return stbPreemptionArg.toString();
}

Golang

func CovertToHtml(src string) string{
    rs := []rune(src)
    htmlUtf8 := ""
    for _, r := range rs {
        rint := int(r)
        if rint < 128 {
            htmlUtf8 += string(r)
        } else {
            //utf8 = "\\u"+strconv.FormatInt(int64(rint), 16)
            htmlUtf8 += "&#x"+strconv.FormatInt(int64(rint), 16) + ";"
        }
    }
return htmlUtf8
}

Summarize

The above is the method that the editor introduced to you to convert Chinese into UTF-8 in HTML. I hope it will be helpful to you!

<<:  WeChat applet custom menu navigation to achieve staircase effect

>>:  A brief discussion on the font settings in web pages

Recommend

Vue implements simple slider verification

This article example shares the implementation of...

How to remove the blue box that appears when the image is used as a hyperlink

I recently used Dreamweaver to make a product pres...

MySQL multi-instance deployment and installation guide under Linux

What is MySQL multi-instance Simply put, MySQL mu...

Mac installation mysqlclient process analysis

Try installing via pip in a virtual environment: ...

Docker's flexible implementation of building a PHP environment

Use Docker to build a flexible online PHP environ...

Detailed explanation of Angular component projection

Table of contents Overview 1. Simple Example 1. U...

Native js implements a minesweeper game with custom difficulty

This article example shares the specific code of ...

VMware ESXi installation and use record (with download)

Table of contents 1. Install ESXi 2. Set up ESXi ...

VMware Workstation 15 Pro Installation Guide (for Beginners)

01. VMware Workstation Pro 15 Download Download: ...

A more elegant error handling method in JavaScript async await

Table of contents background Why error handling? ...

Detailed explanation of CSS3 text shadow text-shadow property

Text shadow text-shadow property effects: 1. Lowe...

Implementation of Nginx configuration of multi-port and multi-domain name access

To deploy multiple sites on a server, you need to...

Nginx Linux installation and deployment detailed tutorial

1. Introduction to Nginx Nginx is a web server th...

Web developers are concerned about the coexistence of IE7 and IE8

I installed IE8 today. When I went to the Microso...