#include #include #include using namespace std; int main() { setlocale(LC_ALL, "en_US.UTF-8"); wcout << "Content-type: text/html; charset=UTF-8\n\n" << L"\n" << L"\n" << L"\n" << L"\n" << L"Bengali\n" << L"\n" << L"\n" << L"\n" << L"

Bengali

\n"; wstring vowels {L"\u0985\u0987\u098A\u098B"}; //some bangla vowels wstring hello {L"\u09A8\u09AE\u09B8\u09CD\u0995\u09BE\u09B0"}; wstring world {L"\u09AC\u09BF\u09B6\u09CD\u09AC"}; wcout << vowels << L"\n"; wcout << hello << L" " << world << L" " << L"\n"; wcout << L"\n" << L"\n"; return EXIT_SUCCESS; }