Advertisement
MilenaSP

Untitled

Jan 24th, 2014
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Unicode72
  8. {
  9.  
  10. //Declare a character variable and assign it with the symbol that has Unicode code 72. Hint: first use the Windows Calculator to find the hexadecimal representation of 72.
  11.  
  12. class Uni
  13. {
  14. static void Main(string[] args)
  15. {
  16. char a = '\u0048';
  17. Console.WriteLine("The Unicode representation of 72 is " + a);
  18. }
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement