lmarkov

UnicodeCode72

Nov 20th, 2012
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.18 KB | None | 0 0
  1. using System;
  2.  
  3. class UnicodeCode72
  4. {
  5.     static void Main()
  6.     {
  7.         char var1 = '\u0048';
  8.  
  9.         Console.WriteLine("Unicode: {0}\n\rChar: {1}",72, var1);
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment