MySQL don't want to store unicode character

前端 未结 3 1129
有刺的猬
有刺的猬 2020-12-05 15:51

Why won\'t MySQL store the unicode character

3条回答
  •  时光取名叫无心
    2020-12-05 16:17

    MySQL only supports characters from the basic multilingual plane (0x0000 - 0xFFFF).

    Your character is out if this plane.

    Try storing a synonym instead :)

    Update:

    MySQL 5.5.3 and on (which has not gone GA yet) does support supplementary characters if you use UTF8MB4 encoding.

提交回复
热议问题