Skip to content

Instantly share code, notes, and snippets.

@emedinaa
Last active August 29, 2015 14:10
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emedinaa/ee96057eed949b744d02 to your computer and use it in GitHub Desktop.
Save emedinaa/ee96057eed949b744d02 to your computer and use it in GitHub Desktop.
android display double quotes(")
//http://unicode-table.com/es/
String message = "esto es un "+'\u0022'+"hola"+'\u0022';
System.out.println("message "+message);
Log.i("CONSOLE", "message "+message);
//output
message esto es un "hola"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment