#include #include #include using namespace std; int main () { setlocale(LC_ALL, ""); // latin letter i, c, f wchar_t i {L'\x0069'}; wchar_t c {L'\x0063'}; wchar_t f {L'\x0066'}; wstring icf {L"\x0069\x0063\x0066"}; // wide stirng containing letters in latin i, c and f wcout << L"Content-type: text/html; charset=UTF-8\n\n" << L"\n" << L"\n" << L"Latin Characters\n" << L"\n" << L"\n" << L"

Unicode Letters i,c,f

\n" << L"

" << i << L" " << c << L" " << f << L" " << icf << L"

\n" << L"\n" << L"\n"; return EXIT_SUCCESS; }