Here you can find the source of getEmojiByUnicode(int unicode)
static String getEmojiByUnicode(int unicode)
//package com.java2s; public class Main { static String getEmojiByUnicode(int unicode) { return new String(Character.toChars(unicode)); }/*from ww w . jav a 2s. co m*/ }