Online Java Compiler By
JavaTpoint.com
public class StringToObjectExample{ public static void main(String args[]){ String s="hello"; Object obj=s; System.out.println(obj); }}
Output