why we can assign both int value and a char value to Character Wrapper type. Autoboxing means boxing for the corresponding wrapper but Character is not the corresponding wrapper of int. It is Integer
why both of these statements are possible
Character character = 'a';
Character character2 = 3;