Computer Science, asked by kaushalnishad, 1 year ago

please convert ASCII string "Subject: Computer %$ SC." into UTF 8 string


kaushalnishad: please reply me
kaushalnishad: someone

Answers

Answered by topanswers
4

ASCII: The American Standard Code for Information Interchange is a character encoding standard to represent text in computers and other devices.

UTF 8:  A variable width character encoding standard that is capable of encoding all 1,112,064 valid code points in Unicode using 1 to 4 8-bit bytes is UTF 8.

In ASCII: Subject: Computer %$ SC.

In UTF 8: Subject: Computer %$ SC. (Plain text)

In UTF 8: U3ViamVjdDogQ29tcHV0ZXIgJSQgU0Mu (Binary)

In UTF 8: 53 75 62 6A 65 63 74 3A 20 43 6F 6D 70 75 74 65 72 20 25 24  

20 53 43 2E (Hexa decimal)

In UTF 8: "Subject: Computer %$ SC." (String)

Similar questions