9 lines
329 B
Plaintext
9 lines
329 B
Plaintext
--source suite/xengine_collations/include/unicode.inc
|
|
select hex(convert(uc using utf32)),
|
|
hex(weight_string(convert(uc using utf8mb4) collate utf8mb4_zh_0900_as_cs)),
|
|
name from unicode
|
|
where category in ('Lu','Ll','Lt','Lm','Lo','So')
|
|
order by uc collate utf8mb4_zh_0900_as_cs, cp;
|
|
|
|
drop table if exists unicode;
|