// Getting the country code and name from the user's IP
$.get("https://api.ipdata.co", function (response) {
$("#flag").html(response.emoji_flag + ' ' + response.country_name);
}, "jsonp");

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<pre id="response">
<div id="flag"></div>
</pre>
&#13;
我看到的是
我在Ubuntu上使用Chrome,以前能够在其他网站上看到全彩色表情符号。
以上打印我们的旗帜的两个字母,但我想显示全彩旗。
像
我该怎么做?