Python Programming - Console Input/Output - Discussion

Discussion Forum : Console Input/Output - General Questions (Q.No. 19)
19.
How can you print the Unicode representation of a character?
unicode_print('A')
ord('A')
print_unicode('A')
unicode('A')
Answer: Option
Explanation:
The ord() function in Python is used to get the Unicode code point of a character.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.