Unable to print russian characters

Try this: String myString = “some cyrillic text”; byte bytes[] = myString.getBytes(“ISO-8859-1”); String value = new String(bytes, “UTF-8”); Or this: String myString = “some cyrillic text”; byte bytes[] = myString.getBytes(“UTF-8”); String value = new String(bytes, “UTF-8”); The main problem with russian its to set UTF-8 encoding correctly.

VBA – Convert string to UNICODE

VBA’s support for Unicode is not all that great. It is possible to handle Unicode strings, but you will not be able to see the actual characters with Debug.Print or MsgBox – they will appear as ? there. You can set Control Panel > Region and Language > Administrative tab > “Current language for non-Unicode … Read more