Let us use the character Latin Capital Letter a with Ogonek (U+0104) as an example.
I have an int that represents its UTF-8 encoded form:
my_int = 0xC484
# Decimal: `50308`
# Binary: `0b1100010010000100`
If use the unichr
function i get: \uC484
or 쒄
(U+C484)
But, I need it to output: Ą
How do I convert my_int
to a Unicode code point?