<?php

$text = "\u{0019}hello";

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

$text = preg_replace('/[^\PCc^\PCn^\PCs]/u', '', $text);

print($text);