How can I send text with emoji from Android app to server and save it correctly in MySql database?
In Android app I've pass some parametres with post method to php server, then I save it in to MySql database. But I've 2 problems with emoji
How can I send text with emoji from Android app to server and save it correctly in MySql database?
In Android app I've pass some parametres with post method to php server, then I save it in to MySql database. But I've 2 problems with emoji
You can use StringEscapeUtils Apache Library https://commons.apache.org/proper/commons-lang/download_lang.cgi
For saving the unicodes in database you have to encode them. So send your unicodes to server by encoding like
StringEscapeUtils.escapeJava(/* string message*/)
For displaying the encoded unicode in android
StringEscapeUtils.unescapeJava(/* string message*/)