utf8mb4_unicode_ci
This page is part of MariaDB's Documentation.
The parent of this page is: Collations for MariaDB Xpand
Topics on this page:
Overview
A collation for the utf8mb4 character set.
DETAILS
Is Default? No
EXAMPLES
CREATE TABLE collate_example1 (
name VARCHAR(32) CHARSET utf8mb4,
description VARCHAR(64) CHARSET utf8mb4 COLLATE utf8mb4_unicode_ci
);
CREATE TABLE collate_example2 (
name VARCHAR(32),
description VARCHAR(64)
) DEFAULT CHARSET utf8mb4, DEFAULT COLLATE utf8mb4_unicode_ci;
SET SESSION collation_connection = 'utf8mb4_unicode_ci';