I have this assignment:
String msg = "El código QR ya no es válido";
when debugging, this is displayed:
El código QR ya no es válido
what may be the problem?
EDIT:
when that text comes from a Web Server, which sends texts using UTF-8 encoding, string is assigned correctly. The problem is only when assigning a string directly to a String variable.
Thanks Jaime