Here you can find the source of emoji(int hexEmoji)
public static String emoji(int hexEmoji)
//package com.java2s; //License from project: Apache License public class Main { public static String emoji(int hexEmoji) { return String.valueOf(Character.toChars(hexEmoji)); }//from w ww . j a va 2 s. c o m }