textclean::replace_non_ascii("\u0003What was the most important")
## [1] "\003What was the most important"
stringi::stri_replace_all_regex(textclean::replace_non_ascii("\u0003What was the most important"), '[^ -~]+', ' ')
[1] " What was the most important"
Would need a replacement argument