REPLACEMENT CHARACTER on RadzenDataGrid

I have a component that inherits from RadzenDataGrid, mainly for translations:

@typeparam TItem
@inherits RadzenDataGrid<TItem>
@inject IStringLocalizer<App> localization;

@RenderBase()

@code{
    RenderFragment RenderBase() => builder => 
    {
        base.BuildRenderTree(builder); 
    };

    protected override void OnInitialized()
    {
        this.EmptyText = localization["NenhumregistroEncontrado"];
        this.FilterCaseSensitivity = FilterCaseSensitivity.CaseInsensitive;
        this.ShowPagingSummary = true;
        this.PagingSummaryFormat = "Página {0} de {1} ({2} itens)";
        this.PagerHorizontalAlign = HorizontalAlign.Left;
    }
}

My problem is on:

this.PagingSummaryFormat = "Página {0} de {1} ({2} itens)";

On localhost it shows the text ok, but once published to azure through github actions, it is shown like this:

Other words with accents works well (including data rows in the image).

The problem was that visual studio was saving on a different encoding (windows-1252) from vscode (UTF8)