How do I display this symbol as a character in a string (In my instance a datagridview textbox) using c#.NET? Is there even a unicode representation for infinity or am I out of luck and need to use an image?
Just use the unicode syntax in C#
txt.Text = "\u221E";
See for example: http://www.fileformat.info/info/unicode/char/221e/index.htm
Copy/paste from here or other locations on the Internet: ∞ I just did this in C# and it works.
tbGreekChar.Text = "∞";
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With