<?php
$bytes = '208,159,209,128,208,184,208,178,208,181,209,130,44,32,208,188,208,184,209,128';
$str = "";
foreach(explode(',', $bytes) as $code) {
$str .= chr($code);
}
var_dump($str);
//string(20) "Привет, мир"
<?php
$str = "Привет, мир";
$bytes = [];
foreach(str_split($str) as $char) {
$bytes[] = ord($char);
}
echo join(',', $bytes);
//208,159,209,128,208,184,208,178,208,181,209,130,44,32,208,188,208,184,209,128