Created
December 27, 2016 19:15
-
-
Save timw4mail/3d476fe72a9690b4c3a713482d4fc24b to your computer and use it in GitHub Desktop.
Emoji in code
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
<?php | |
$animals = [ | |
'dog' => 'πΆ', | |
'cat' => 'π±', | |
'mouse' => 'π' | |
]; | |
?> | |
<script> | |
let wildAnimals = { | |
fox: 'π¦', | |
bear: 'π»', | |
panda: 'πΌ', | |
koala: 'π¨' | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment