When i export gridview data ,local unicode fonts are not supported

Thanks in advance,

It works fine for English language characters but it does not support local characters like “नमस्ते नेपाल”.
Please suggest me solutions for it.

No details and expect help?
Put details that one can be able to understand. Things like what you have done, relevant code, et al

Here is the code.

<?php
use kartik\export\ExportMenu;
  
    echo  ExportMenu::widget([
                  'dataProvider' => $dataProvider,
                    'filterModel' => $searchModel,
                    'columns' => $gridColumns,
                ]);
   ?>


Solved Clearing Buffer.

  <?=
                ExportMenu::widget([
                    'dataProvider' => $dataProvider,
                    'filterModel' => $searchModel,
                    'columns' => $gridColumns,
                    'clearBuffers' => true,
                    'filename' => 'अपाङ्गता भएका व्यक्तिको विवरण',
                ]);
                ?>