Radzen datagrid custom title?

I've been searching to see if I can find if it's possible to create a column with a custom title or not.
I'm currently trying to create a datagrid that accepts new inputs and one of the columns uses power notation 1. I was wondering if or how that is achievable. I've tried putting it directly into the title but it ignores the markup.
For now i'm using ^1 but I was hoping to match the old code

Using the unicode seems to work just fine:

 <RadzenDataGridColumn Title="Photo¹"

image

Other than that you can use the HeaderTemplate.

<RadzenDataGridColumn ...>
   <HeaderTemplate>
      My Title <sup>2</sup>
   </HeaderTemplate>
</RadzenDataGridColumn>

Oh good thanks for the tip with unicode, and I did eventually figure out I could do it through the header template. Thanks for being patient with me as I learn your components