I know that we can send plain text to whatsapp through an intent like :
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT,"Text to be sent on whatsapp");
sendIntent.setType("text/plain");
sendIntent.setPackage("com.whatsapp");
startActivity(sendIntent);
But I want to be able to send emojis (emoticons) to whatsapp through an intent.
How is it possible?
Do we have some special codes for the emojis?