Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding a TM superScript to a string

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!

like image 630
twal Avatar asked Aug 16 '10 19:08

twal


People also ask

How do you type a superscript in TM?

To insert the trademark symbol, press Ctrl+Alt+T. To insert the registered trademark symbol, press Ctrl+Alt+R.

Is TM a superscript or subscript?

TM stands for trademark. The TM symbol (often seen in superscript like this: TM) is usually used in connection with an unregistered mark—a term, slogan, logo, or other indicator—to provide notice to potential infringers that common law rights in the mark are claimed.

How do you add a TM to something?

Word will automatically correct this to the TM symbol on both Windows and macOS. If you're using Windows, you can also insert the ™ symbol by pressing Ctrl + Alt + T. On a Mac, you can also insert this symbol by pressing Option + 2.

How do I type a trademark symbol?

Registered trademarks are indicated using the registered trademark symbol, ⟨®⟩, and in some jurisdictions it is unlawful or illegal to use the registered trademark symbol with a mark that has not been registered.


2 Answers

  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
like image 167
Omer Avatar answered Oct 02 '22 20:10

Omer


This answer is "\u2122" by Hans Passant™

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

like image 26
Hans Passant Avatar answered Oct 02 '22 19:10

Hans Passant