Advertisement
Guest User

Untitled

a guest
May 29th, 2015
1,000
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. using System;
  2. class UnicodeChar
  3. {
  4. static void Main()
  5. {
  6. string a = '\u002A' ; //declaring variable
  7. Console.WriteLine(a); //printing the variable
  8. Console.ReadKey();
  9.  
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement