I want to show the \"♫\" character in an Android TextView, but it shows [] instead.
This is my code:
txtCatname.setText(\"♫\");
That is common when the source file is encoded as ANSI. Converting the source file as UTF-8 (without BOM) will likely solve the issue.