有一个国家代码列表,我需要为每个代码附上表情符号标志.
有没有办法从中提取unicode或找到国家代码的表情符号?
有没有办法从中提取unicode或找到国家代码的表情符号?
这个npm示例看起来类似于我的目标(但使用十六进制作为输入)https://github.com/thekelvinliu/country-code-emoji/blob/master/src/index.js
解决方法
这段代码片段对我有用.只需将“US”替换为您喜欢的任何有效国家/地区代码(基于区域指标符号),它将创建一个String标志,其中包含该国家/地区的标志表情符号. (
Reference)
int flagOffset = 0x1F1E6; int asciiOffset = 0x41; String country = "US"; int firstChar = Character.codePointAt(country,0) - asciiOffset + flagOffset; int secondChar = Character.codePointAt(country,1) - asciiOffset + flagOffset; String flag = new String(Character.tochars(firstChar)) + new String(Character.tochars(secondChar));