When I send an SMS text message from send-mail.php to a 4G phone the percent sign changes to an upside down question mark. It works fine sending to a 3G phone. The message is about probability of rainfall, for example "10% chance of rain".
<?php
// Phone number to send to
$phone2send2 = '1231234567@vtext.com';
$headers = "From:" . $from;
$strForecast = "10% chance of rain";
$body = $strForecast;
if (mail($phone2send2, $subject, $strForecast, $headers, "-f me@me.com")) { } else { }
?>