Android Unicode Convert getEmojiByUnicode(int unicode)

Here you can find the source of getEmojiByUnicode(int unicode)

Description

get Emoji By Unicode

Declaration

static String getEmojiByUnicode(int unicode) 

Method Source Code

//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*/
}

Related

  1. convertToUnicode(byte[] b, boolean includesNull)
  2. stringToUnicode(String strText)
  3. unicode2han3last_direct(Character c)
  4. unicode2han_str(String str)
  5. unicodeEscape(String s)
  6. hiraganaToKatakana(byte[] b)