<?php function text_emoji($text_emoji) { $style = null; // twitter, google or apple $emoji_data = json_decode(file_get_contents('https://open-api.pp.ua/emoji/?e='.$style.'&text='.$text_emoji), true); return $emoji_data['emoji_version']; } echo '<style>.emoji {width:18px;vertical-align:-4px;}</style>'; echo text_emoji('Emoji Styles 😎🤙'); ?>