Here is the code I got the space output. I didn't figure out if '\u0000' means the space or something else.
`package com.string.test;
class CharTest {
char y;
public static void main(String args[]){
CharTest test = new CharTest();
System.out.println("Default value of char:----" + test.y + "----");
}
} `