What is meant by arbitrary universal characters ? Give an example please.(in python). | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is meant by arbitrary universal characters ? Give an example please.(in python).

31st Mar 2020, 12:41 PM
Ramya Thiurmalisamy
Ramya Thiurmalisamy - avatar
2 Answers
+ 1
Actually there is no such stuff as an arbitrary universal character, the Python 3.8 character set has just ASCII, Unicode, UTF-8 embedded in itself. ASCII - American Standard Code for Information Interchange, it is pretty much used in the backend processing of the computers - conversion from English to machine level Unicode - its the most widely used and an expansive Character set, it even includes emojis in it UTF-8 - Pretty much outdated, but some older websites send UTF-8 data, and hence usually we "encode and decode data" in Python just to make sure we don't mess up with with the Information. Thanks.
6th May 2020, 10:53 AM
Tejas Amit Sheth
0
Tejas Amit Sheth Tq for your explanation.
7th May 2020, 4:56 PM
Ramya Thiurmalisamy
Ramya Thiurmalisamy - avatar