So WordPress has some emoji detection and modifications that get made by the core WordPress install. Here is some code that you can put into your functions.php file to disable this as it can sometimes cause issues in other browsers like Safari.
// REMOVE EMOJI ICONS remove_action('wp_head', 'print_emoji_detection_script', 7); remove_action('wp_print_styles', 'print_emoji_styles');