14

I need to add the TM(trademark) superscript symbol next to a title in a C# string. is there anyway to possibly do this? Thanks!

Omer
  • 8,194
  • 13
  • 74
  • 92
twal
  • 6,999
  • 17
  • 48
  • 58

2 Answers2

44

This answer is "\u2122" by Hans Passant™

Use the charmap.exe applet and copy/paste the character in your string literal.

Hans Passant
  • 922,412
  • 146
  • 1,693
  • 2,536
4
  1. Click Start
  2. Type Charmap
  3. Open Charmap
  4. Click Advanced View
  5. Type mark
  6. Copy desired value
  7. Paste to your code
Omer
  • 8,194
  • 13
  • 74
  • 92