А
Size: a a a
А
s
..
new String(line.getBytes(StandardCharsets.UTF_8))
?А
new String(line.getBytes(StandardCharsets.UTF_8))
?s
new String(line.getBytes(StandardCharsets.UTF_8))
?s
А
А
..
s
А
..
А
DC
..
ДО
ДО
D
VK
А
try {
// Convert from Unicode to UTF-8
String string = "\u043f\u0430\u043c\u043f";
byte[] utf8 = string.getBytes("UTF-8");
// Convert from UTF-8 to Unicode
string = new String(utf8, "UTF-8");
System.out.println(string);
} catch (UnsupportedEncodingException e) {
}