Android Messaging with smileys in the message

Im trying to implement message chatting functionality in my application and thus want to include smiley’s in my message. So I am able to type smileys via the smiley keyboard, which is not being decoded by the received user. Can you suggest me how I can fulfill my requirement.

Did you inspect the bytes received by the subscriber? Do they arrive the same way they were sent?

Hi, im having the same problem and i did inspect the bytes and their not coming back the same for me

This is what i get when uploading to server
http://support.backendless.com/public/attachments/e958426ed49263b6c2f9ce8da1371d56.png</img>

then after when trying to receive it:
http://support.backendless.com/public/attachments/b9b72ff6d554835bc849d6bb4abfb648.png</img>

e958426ed49263b6c2f9ce8da1371d56.png

b9b72ff6d554835bc849d6bb4abfb648.png

Could you please show code snippets with example where you form the message and where you parse it.
Have you any code in the middle ? (eventhandlers, etc.)

@Override 
public void onEmojiconClicked(Emojicon emojicon) { 
 EmojiconsFragment.input(CommentWrapper, emojicon); //inputting emojicon to textview that was click 
}


case R.id.CommentBtn:
 String comment = CommentWrapper.getText().toString().trim();
 if (!TextUtils.isEmpty(comment)) {
 AddComment(comment);
 }

the code works but it when i uploading it to the sever

ok…never mind i figured out the problem