diff --git a/Sources/Utils.php b/Sources/Utils.php index eee5962495..6e2203e53f 100644 --- a/Sources/Utils.php +++ b/Sources/Utils.php @@ -260,7 +260,7 @@ function ($matches) use ($substitute) { if ( // Control characters (except \t, \n, and \r). ($num < 0x20 && $num !== 0x9 && $num !== 0xA && $num !== 0xD) - || ($num >= 0x74 && $num < 0xA0) + || ($num >= 0x7F && $num < 0xA0) // UTF-16 surrogate pairs. || ($num >= 0xD800 && $num <= 0xDFFF)