Last active
August 29, 2015 14:10
-
-
Save emedinaa/ee96057eed949b744d02 to your computer and use it in GitHub Desktop.
android display double quotes(")
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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