Examples of Emoji


Examples of org.pirkaengine.mobile.Emoji

                char c = in.get();
                if (Character.isHighSurrogate(c)) {
                    // with surrogate
                    char low = in.get();
                    int codePoint = Character.toCodePoint(c, low);
                    Emoji emoji = Emoji.charOf(codePoint);
                    out.put(getEmojiCode(emoji));
                    pos += 2;
                } else if (c == 0x0023 || (0x0030 <= c && c <= 0x0039)) {
                    // 2文字で絵文字に変換される特殊文字
                    char c2 = in.get();
                    if (c2 == 0x20E3) {
                        out.put(getCarrierEmojiCode(Emoji.capsCharOf(c)));
                    } else {
                        out(c, out);
                        out(c2, out);
                    }
                    pos += 2;
                } else {
                    Emoji emoji = Emoji.charOf(c);
                    if (emoji != null) {
                        // emoji
                        out.put(getEmojiCode(emoji));
                    } else {
                        // その他
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.