I have to show the copyright symbol: © in the AlertDialog post. I set the string value with the copyright symbol in res / string. But when you open a dialog, the symbol appears as a question mark. How can I correctly show the copyright symbol in a dialog box. Thank.
You can also use the Unicode character for this: "\ u00A9 2010 Test"
Use © for writing © in String resource:
©
Copyright © Acme Industries, Inc
becomes
Copyright © Acme Industries, Inc
Write it like this:
> String copyright = "Copyright \u00a9 2013, ajdeguzman";
very simple, try adding \ before @
Use "\ u00a9", this works exactly as required.
Unicode for all characters can be found at https://unicode-table.com/en/#basic-latin.