I have difficulty parsing JSON date from my PHP file
{"date":"20\/12\/2022","result":"£13000.00","medias":"BBC","country":"UK"}
but when I try to parse it and to see the data in the console.log - it's empty
Please help
My Ajax Function
function ajax_call(){
    const style2 = $("#style1").val();
    const radio_btn = $('input[name="drone"]:checked').val();
    if(style2==""){
        document.getElementById("error").innerHTML = "Error: Please enter style code !"; 
        return false;
    } 
    {
        $.ajax({ 
            type: 'post',
            url: "t.php",  
            data: { styles: style2 , country: radio_btn},
            dataType: "json",
            success: function(data){  
                var jsondata = $.parseJSON(data);
                console.log(jsondata);
            }
        })
    }
}
My PHP
<php
header('Content-type: application/json');
$date = "20/12/2020";
$end_result = "£13000.00";
$medias = "BBC";
$country = "UK";
$sortjson = array('date' => $date,  
                    'result' =>iconv('Windows-1252', 'UTF-8', $end_result), 
                    'medias' => $medias, 
                    'country' => $country
            );
echo json_encode($sortjson, JSON_UNESCAPED_UNICODE);
?>