import java.awt.*;
public class Example {
/**
* Simple Frame
* <pre>
* /* create a frame */
* Frame f = new Frame()
* </pre>
* @param args
*/
public static void main(String args[]){
Frame f = new Frame();
f.setSize(200,200);
f.setVisible(true);
}
}
You can represent any character with a numerical identity, the syntax is &#nnn; where nnn is the Unicode code (decimal value) of the character.
Written and compiled by Réal Gagnon ©1998-2012
[ home ]