Wanna get the unicode of chinese or vietnamese's han-nom and japanese characters I've tried these code
text = "𬖰";
br = text.encode("unicode-escape");
print(br);
and got
b'\\U0002c5b0'
But what should I do when I want to have something like U+2C5B0
or U2C5B0
?