Hi Maria!
It's actually a super-quick url trick:
function addEmoji() {
if (navigator.userAgent.indexOf('Mac OS X') != -1) {
window.location.hash = "💁";
}
};
addEmoji();
All I'm doing is adding the emoji after a hash. I'm checking for Mac users because the emoji was causing some non-Mac users URLs to break and not be able to access my site. I'm also adding it as a hash because if it were part of the URL "proper," going to any link without the emoji would 404. But adding an emoji hash is harmless otherwise on Mac