EmojiParserTo unicodeTo replace all the aliases and the html representations found in a string by their unicode, use EmojiParser#parseToUnicode(String).For example:String str = "An :grinning:awesome :smiley:string 😄with a few :wink:emojis!"; String result = EmojiParser.parseToUnicode...