In C, after setting a new locale withsetlocale(LC_ALL, "Hebrew")
, I could print the new local name (Hebrew.Israel.1255), but couldn't figure how to use the new locale's charset, sinceprintf(%c, 240)
printed '?' instead of a hebrew letter(1255 map).
.
Thanks in advance!