You could try to use the System.Text.RegularExpressions.Regex.Unescape static method:
string internal_ = Regex.Unescape(printable);
But unfortunately it applicable mainly for Regex control characters.
Test:
var chars = internal_.ToCharArray();
The chars
array has 1 element with code 0x0a
.