Daily Shaarli

All links of one day in a single page.

May 16, 2017

Emoji short name's to HTML HEX Code via PHP - David Sword

<?
$table = json_decode(file_get_contents('emoji.json'));
//print_r($table); //take a peak
foreach ($table as $k => $emoji)
foreach ($emoji->short_names as $shortname)
echo "'{$shortname}' => '{$emoji->unified}', \n";
?>