Java Applet in Arabic

This applet displays "Hello world" text in Arabic (at least we think we transcribed this correctly from information provided by an Arabic speaker, but if not please contact us).

Source code:

import java.applet.*;
import java.awt.*;

public class Arabic extends Applet {

public void init()
{
    setBackground(new Color(225,225, 255));
}

public void paint(Graphics g)
{
    g.setFont(new Font("Serif", Font.BOLD, 25));
    g.drawString("\u062a\u062d\u064a\u0629 \u0644\u0644\u0639\u0627\u0644\u0645", 10 , 25);
}
} // END OF Class Arabic