var x = JSON.stringify([text])
var запрос = new XMLHttpRequest()
запрос.open('POST', '1.php')
запрос.send(x)
$x = 'base64' //полученная строка
$dir ='./раздел/';
$d = base64_decode($x);
file_put_contents($dir . '1.txt', $d);
$x = 'base64' //полученная строка
$dir ='./раздел/';
$code = mb_detect_encoding($x, "auto");
$x = iconv($code, "ISO-8859-1", $x);
//возможно просто так поможет:
//$x = iconv("UTF-8", "ISO-8859-1//IGNORE", $x);
$d = base64_decode($x);
file_put_contents($dir . '1.txt', $d);