Please see here for a related question.
However, char
goes to 0xffff
(or 65535
). I need to write 0xd800df46
(or 66374
), Gothic letter Faihu, so casting that int
to char
will not work. I do the conversion ok, that is, I get the correct integer, meaning I calculate the surrogate pairs ok, but I don't know how to "render" it, convert it to a character to be output as a glyph.
Please notice that I cannot use \Unnnn for ... well, theoretical reasons.
Thank you.