/*#include<iostream>
using namespace std;
int main()
{
char ch='a';
cout<<(int)ch<<endl;
return 0;
}*/
#include<iostream>
using namespace std;
int main()
{
wchar_t ch=L'a';
cout<<(int)ch<<endl;
cout<<sizeof(wchar_t)<<endl;
return 0;
}
To embed this program on your website, copy the following code and paste it into your website's HTML: