Write a program that take a user input word and convert it to Unicode equivalent in hex and binary.
Hints:
Use help() for usage of built-in function ord(), hex() and bin().
Inpu(t)/(o)utput example:
Enter a word: abc
Expected Output:
Word is: abc
In hex: 0x61 0x62 0x63
In binary: Ob1100001 Ob1100010 Ob1100011