I wanted to display greek letter lambda in a richtextbox (winforms 4.5.2).
My RTF will look as below:
richTextBox1.Rtf = "{\\rtf1\\ansi\\deff0{\\fonttbl{\\f0\\fswiss\\fcharset0 Arial;}}\\uc1\\pard\\f0\\fs24 pdioxaborolan-2-yl)phenyl]-λ⁶-sulfane}";
but it always display λ⁶ as two ?? (question marks)
I also tried putting \u03BB
instead of the Greek symbol directly, didn't made any change in output.
Please help to display the greek letter.
If I assign the text directly then it works.
richTextBox1.Text = "pdioxaborolan-2-yl)phenyl]-λ⁶-sulfane";
(In this case lambda display as Greek letter but superscript shows as box)
Thank you...