<?php

$text = "iso\u{3000}45001-2027.09.23.pdf";

print($text . "\n\n");

$clean_text = preg_replace('/[[:^print:]]/', '-', $text);

print($clean_text);