Data Type Visual C++ .NET

#include "stdafx.h"
using namespace System;
void main()
{
    char a = 'a';        
    Char b = L'b';       // Unicode 'b'
    char t = '\t';       
    Char s = L'\\';      
    Console::WriteLine ( a ); 
    Console::WriteLine ( b ); 
    Console::WriteLine ( t ); 
    Console::WriteLine ( s ); 
 
 
}