I get a string sent to me from the server (my application runs on Android). One of the characters is the Unicode character, which is a musical note. I take the response from the server in String, and then pass it directly to the TextView. Here's what you should get:
โซ
but instead I only see the block (it seems to look):
[]
when I print the line for logcat, I see:
รขยซ
I am not sure how to get TextView to display the character correctly. I tried this:
tv.setText(Html.fromHtml(text).toString());
but it still displays the block. What is the right way to do this?
thank
-------------------- Update -------------------------- ---
- , ( ). , , ?:
<html>
<body>
♫
<br />
♫
</body>
</html>