How to store Hebrew character in C++

1 Answer

0 votes
#include <iostream>

int main() {
    wchar_t ch = L'א';
    
    std::cout << ch << "\n";
    
    std::wcout << ch;
}




/*
run:

1488
א

*/

 



answered Nov 27, 2022 by avibootz
...