Data Type Java Tutorial

public class MainClass {
  public static void main(String[] arg) {
    String text = "To be or not to be";        // Define a string
    byte[] textArray = text.getBytes();
    
    for(byte b: textArray){
      System.out.println(b);
      
    }
  }
}
84
111
32
98
101
32
111
114
32
110
111
116
32
116
111
32
98
101