Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Entering Unicode data in Visual Studio, C#

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.

like image 494
Adam Tegen Avatar asked Aug 06 '09 15:08

Adam Tegen


1 Answers

\uFFFF
\UFFFFFFFF

C# Unicode character escape sequences.

like image 91
Dykam Avatar answered Oct 05 '22 01:10

Dykam