Python character and character values (ASCII or Unicode code values) conversion methods

Source: Internet
Author: User
Tags chr ord string format

This article mainly introduces Python character and character value (ASCII or Unicode code value) conversion methods, that is, the string in the ASCII value or between Unicode values and conversion methods, the need for friends can refer to the

Objective

Converts a character to the appropriate ASCII or Unicode code, or to the opposite operation.

Method

For ASCII code (0~255 range)

The code is as follows:

>>> Print ord (' A ')

65

>>> Print Chr (65)

A

For Unicode characters, note that only Unicode characters of length 1 are received

The code is as follows:

>>> Print ord (U ' u54c8 ')

21704

>>> print UNICHR (21704)

Ha

>>> Print repr (UNICHR (21704))

U ' U54c8 '

Chr () differs from STR (), a value that receives only 0~255 returns the character corresponding to the ASCII value, one that accepts any type return string format

The code is as follows:

>>> chr (97)

A

>>> STR (97)

' 97 '

Use the map and the above functions to get a list containing character values or code values

The code is as follows:

>>> Print Map (ord, (U ' u54c8 ', U ' u54c9 '))

[21704, 21705]

>>> Print Map (Unichr,range (21704,21707))

[u ' U54c8 ', U ' u54c9 ', U ' u54ca ']

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.