About the pitfalls of implementing specified encoding in MySQL

About the pitfalls of implementing specified encoding in MySQL

Written in front

Environment: MySQL 5.7+, MySQL database character encoding is utf8, table is also utf8

Scenario: WeChat authorizes the acquisition of user information (including nickname) and saves it to the database. Some users succeed, but a few fail.

So why did it fail?

Paste the error log

Incorrect string value: '\xF0\x9F\x98\x98\xF0\x9F...' for column 'nickname' at row 1

This is because the failed user's WeChat nickname contains emoji symbols.

Analysis:

MySQL supports multiple character encoding sets, such as UTF-8, GB2312, GBK, etc.

You can view it through the SHOW CHARSET command.

We usually recommend using UTF-8 as the default character encoding.

From the above figure we can see that the MySQL database has two sets of UTF-8 encoding implementations.

  • utf8: utf8 encoding only supports up to three bytes. In utf8 encoding, Chinese characters take up 3 bytes, and other English characters, numbers, and symbols all take up 1 byte. However, emoji symbols take up 4 bytes, and some more complex text and traditional Chinese characters also take up 4 bytes.
  • utf8mb4: A complete implementation of the UTF-8 encoding. It supports up to 4 bytes, so it can be used to store emoji symbols.

Check the information, official explanation:

at last

Tips: If you have a field that needs to store emoji symbols, remember to specify the encoding as utf8mb4.

This is the end of this article about a small pit in the implementation of MySQL specified encoding. For more relevant MySQL specified encoding content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Detailed explanation of MYSQL stored procedure comments
  • In-depth analysis of MySQL index data structure
  • Essential conditional query statements for MySQL database
  • Example of how to configure the MySQL database timeout setting
  • Detailed explanation of the installation, configuration, startup and shutdown methods of the Mysql server

<<:  An example of using Dapr to simplify microservices from scratch

>>:  Detailed explanation of compatibility issues and solutions for setting max-width and min-width in table

Recommend

A detailed introduction to Linux system operation levels

Table of contents 1. Introduction to Linux system...

Detailed explanation of Apache website service configuration based on Linux

As an open source software, Apache is one of the ...

Graphical tutorial on installing CentOS 7.3 on VMWare

Illustrated CentOS 7.3 installation steps for you...

Detailed explanation of basic syntax and data types of JavaScript

Table of contents Importing JavaScript 1. Interna...

Detailed explanation of MYSQL log and backup and restore issues

This article shares MYSQL logs and backup and res...

What are the benefits of using // instead of http:// (adaptive https)

//Default protocol /The use of the default protoc...

Implementation code of using select to select elements in Vue+Openlayer

Effect picture: Implementation code: <template...

Troubleshooting the reasons why MySQL deleted records do not take effect

A record of an online MySQL transaction problem L...

Deploy Nginx+Flask+Mongo application using Docker

Nginx is used as the server, Mongo is used as the...

Blog Design Web Design Debut

The first web page I designed is as follows: I ha...

How to use history redirection in React Router

In react-router, the jump in the component can be...