Fun with JavaScript and emoji
Did you know you can, in JavaScript loop over certain emoji's? You can also combine some emoji's. Cool stuff!
https://www.bram.us/2016/08/27/fun-with-javascript-and-emoji/
Posts tagged with emoji
Did you know you can, in JavaScript loop over certain emoji's? You can also combine some emoji's. Cool stuff!
https://www.bram.us/2016/08/27/fun-with-javascript-and-emoji/
Using plain PHP it's kinda hard to display emoji characters. In PHP 5 those characters could be generated by using json_encode. echo json_decode('"\uD83D\uDE00"'); //displays ? I bet no one can type this code by heart. In PHP 7 it's a little bit easier. The hot new version of PHP…