Created
August 17, 2018 19:12
-
-
Save dysbulic/8533d3bd1f19ce02ec53e8be34564087 to your computer and use it in GitHub Desktop.
Unicode Emoji Combinations Unicode Emoji Combinations // source http://jsbin.com/heletez
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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>", "π¨", "‍", "π¨", "‍", "π¦", | |
"<li>", "π©", "‍", "β€", "️‍", "π", "‍", "π¨", | |
"<li>", "π¨", "π»", "‍", "π»" | |
].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>", "π¨", "‍", "π¨", "‍", "π¦", | |
"<li>", "π©", "‍", "β€", "️‍", "π", "‍", "π¨", | |
"<li>", "π¨", "π»", "‍", "π»" | |
].join(""));</script></body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ul { | |
list-style-type: none; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$("#output").html([ | |
"<li>", "π§", "πͺ", | |
"<li>", "π©", "π½", | |
"<li>", "π¨", "‍", "π¨", "‍", "π¦", | |
"<li>", "π©", "‍", "β€", "️‍", "π", "‍", "π¨", | |
"<li>", "π¨", "π»", "‍", "π»" | |
].join("")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment