#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 << i << L" " << c << L" " << f << L" " << icf << L"\n"; return EXIT_SUCCESS; }