I need a function that can print Turkish characters.
public String convert(String input) {
String output = new String(s.getBytes(input), "CodePage-857");
return output;
}
Is there anyone out there can show me how to achieve this?
Thank you
This is how I achieved it.