Online Assembly Compiler

public class Demo { public static void main(String []args) { char c = 'u'; System.out.println("Given value = "+c); if ( c < 128) { System.out.println("Given value is ASCII 7 bit!"); } else { System.out.println("Given value is not an ASCII 7 bit!"); } } }