Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class UnicodeChar
- {
- static void Main()
- {
- string a = '\u002A' ; //declaring variable
- Console.WriteLine(a); //printing the variable
- Console.ReadKey();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement