Skip to content

Instantly share code, notes, and snippets.

@dysbulic
Created August 17, 2018 19:12
Show Gist options
  • Save dysbulic/8533d3bd1f19ce02ec53e8be34564087 to your computer and use it in GitHub Desktop.
Save dysbulic/8533d3bd1f19ce02ec53e8be34564087 to your computer and use it in GitHub Desktop.
Unicode Emoji Combinations Unicode Emoji Combinations // source http://jsbin.com/heletez
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="Unicode Emoji Combinations">
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Unicode Emoji Combinations</title>
<style id="jsbin-css">
ul {
list-style-type: none;
}
</style>
</head>
<body>
<ul id="output">
</ul>
<script id="jsbin-javascript">
$("#output").html([
"<li>", "πŸ‡§", "πŸ‡ͺ",
"<li>", "πŸ‘©", "🏽",
"<li>", "πŸ‘¨", "&zwj;", "πŸ‘¨", "&zwj;", "πŸ‘¦",
"<li>", "πŸ‘©", "&zwj;", "❀", "&#xfe0f;&zwj;", "πŸ’‹", "&zwj;", "πŸ‘¨",
"<li>", "πŸ‘¨", "🏻", "&zwj;", "πŸ’»"
].join(""));
</script>
<script id="jsbin-source-css" type="text/css">ul {
list-style-type: none;
}</script>
<script id="jsbin-source-javascript" type="text/javascript">$("#output").html([
"<li>", "πŸ‡§", "πŸ‡ͺ",
"<li>", "πŸ‘©", "🏽",
"<li>", "πŸ‘¨", "&zwj;", "πŸ‘¨", "&zwj;", "πŸ‘¦",
"<li>", "πŸ‘©", "&zwj;", "❀", "&#xfe0f;&zwj;", "πŸ’‹", "&zwj;", "πŸ‘¨",
"<li>", "πŸ‘¨", "🏻", "&zwj;", "πŸ’»"
].join(""));</script></body>
</html>
ul {
list-style-type: none;
}
$("#output").html([
"<li>", "πŸ‡§", "πŸ‡ͺ",
"<li>", "πŸ‘©", "🏽",
"<li>", "πŸ‘¨", "&zwj;", "πŸ‘¨", "&zwj;", "πŸ‘¦",
"<li>", "πŸ‘©", "&zwj;", "❀", "&#xfe0f;&zwj;", "πŸ’‹", "&zwj;", "πŸ‘¨",
"<li>", "πŸ‘¨", "🏻", "&zwj;", "πŸ’»"
].join(""));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment