I am in possession of the byte representation of UTF8, such as:
195, 156 for "Ü" (capital U Umlaut)
I am struggling to generate a JavaScript-compatible string from these numbers - all my attempts have been unsuccessful. Every method I have tried has misinterpreted "195" as a UTF leading byte and displayed it as "Ã".
Can anyone provide guidance on how to create a displayable string from my sequence of UTF8 bytes?