2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Java で iPhone 絵文字の"意味(定義)"を取得する

Last updated at Posted at 2016-06-17

Character#getName(int codepoint) を使う

package hello;
public class HelloCharacterName {
	public static void main(String[] args) {

		int codepoint = (int) 0x1F603; // 笑顔絵文字
		String name = Character.getName(codepoint);
		System.err.println(name);
	}
}

■結果

SMILING FACE WITH OPEN MOUTH

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?