I want to add the Greek letter omega (U + 03A9) to the label that I posted on the form. I already turned on the encoding of the form, but how to set the contents of the label so that omega appears, and not UTF char code.
So, take this XAML
<Label Height="25">U+03A9</Label>
I want U + 03A9 to be converted to omega
in the code behind I believe that I can do something like
targetEncoding = Encoding.getEncoding(utfEncoding); lblOmega.Content = targetEncoding.getBytes("\u03A9");
But I wonder if I can do this in XAML
Scott source share