No. That's the class name ([B is byte[]) and the hashcode (1339a0dc is the hash code in hexadecimal). Hashes cannot be reversed since they're not bijective.
Why it prints this? Because you're using an implicit toString(). This:
System.out.println(str.getBytes());
gets translated by the compiler as this:
System.out.println(str.getBytes().toString());
because System.out.println() takes a String as argument, so an implicit conversion is made here.
So you're using the default Object#toString() implementation, which works as I explained before (more details in the documentation)