Slick-Util using any charset? korean language font not available

Hi! I’m is programmers dreaming of Korea a student. Please english is not very good because I need you to understand.

Korea from the slick-Util font I used, but the character does not come only question mark output for whatever reason?

And English are fine.

what reason? please tell me!

i Use code.
http://lwjgl.org/wiki/index.php?title=Slick-Util_Library_-Part_3-_TrueType_Fonts_for_LWJGL

1.) It is better to use “BitmapFonts” which are called “AngelCodeFont” in Slick, rather than TrueTypeFont like here.

2.) You need to specify a .ttf file, which has a korean charset.
In this code:

Font awtFont = new Font("Times New Roman", Font.BOLD, 24);
	font = new TrueTypeFont(awtFont, false);

I’m not sure Times New Roman has korean, therefore choose a font which has.
For example “Batang”

same with this:

InputStream inputStream = ResourceLoader.getResourceAsStream("myfont.ttf");
Font awtFont2 = Font.createFont(Font.TRUETYPE_FONT, inputStream);

if you do this, the myfont.ttf must have korean characters.

You should try using UnicodeFont, which has replaced TrueTypeFont.

Thank you, but did not end.

Still Hangul (Korean language), it does not output.
Microsoft made ​​TrueType Font Hangul output did not
You know, Batang or Gulim.
And could not find the .ttf files Batang but .ttc files, find and use.
However, did not.

what i do?