views:

324

answers:

1

Is there a good way to type Unicode symbols in a C# file?

I'm looking for something to the effect of:

  1. Press ALT
  2. Type Unicode Hex
  3. Release Alt

Currently, I'm having to type the symbol into word and copy-paste it into my source file.

+3  A: 
\uFFFF
\UFFFFFFFF

C# Unicode character escape sequences.

Dykam