Yea, sometimes it’s acceptable and you will need to do this.

$s = "Don't you love this ☂?";
$s = preg_replace('/[^(x20-x7F)]*/','', $s);

The string becomes

Don't you love this ?

Thanks Ryan for figuring this out!