Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
考虑这个简单的 MySQL 查询:
SELECT CHAR(224 USING UTF8)
这对我没有任何回报。我希望它返回à。
我尝试指定一个排序规则:
SELECT CHAR(224 USING UTF8) COLLATE UTF8_BIN
但这也没有用。
有任何想法吗?
下面怎么样
SET CHARSET utf8; SET NAMES utf8; SELECT char(0x00E0 using ucs2);