I have the below Java code:
String Str1 = new String("Welcome to Tutorialspoint.com");
System.out.println(Str1.toString().getBytes("UTF-8"));
The output on a 64-bit Windows 7 machine is: "[B@7041825e".
What would be the above code's PHP equivalent?