Report this

What is the reason for this report?

Python ord(), chr() functions

Published on August 3, 2022
Python ord(), chr() functions

Python ord() and chr() are built-in functions. They are used to convert a character to an int and vice versa. Python ord() and chr() functions are exactly opposite of each other.

Python ord()

Python ord() function takes string argument of a single Unicode character and return its integer Unicode code point value. Let’s look at some examples of using ord() function.

x = ord('A')
print(x)

print(ord('ć'))
print(ord('ç'))
print(ord('$'))

Output:

65
263
231
36

Python chr()

Python chr() function takes integer argument and return the string representing a character at that code point.

y = chr(65)
print(y)
print(chr(123))
print(chr(36))

Output:

A
{
$
ć

Since chr() function takes an integer argument and converts it to character, there is a valid range for the input. The valid range for the argument is from 0 through 1,114,111 (0x10FFFF in hexadecimal format). ValueError will be raised if the input integer is outside that range.

chr(-10)

Output:

ValueError: chr() arg not in range(0x110000)

Let’s see an example of using ord() and chr() function together to confirm that they are exactly opposite of another one.

print(chr(ord('ć')))
print(ord(chr(65)))

Output:

ć
65

That’s all for a quick introduction of python ord() and chr() functions.

You can checkout complete python script and more Python examples from our GitHub Repository.

Reference: Official Documentation - ord, Official Documentation - chr

Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.

Learn more about our products

About the author

Pankaj Kumar
Pankaj Kumar
Author
See author profile

Java and Python Developer for 20+ years, Open Source Enthusiast, Founder of https://www.askpython.com/, https://www.linuxfordevices.com/, and JournalDev.com (acquired by DigitalOcean). Passionate about writing technical articles and sharing knowledge with others. Love Java, Python, Unix and related technologies. Follow my X @PankajWebDev

Category:
Tags:
While we believe that this content benefits our community, we have not yet thoroughly reviewed it. If you have any suggestions for improvements, please let us know by clicking the “report an issue“ button at the bottom of the tutorial.

Still looking for an answer?

Was this helpful?

Thank you very much!

- Vishal Vijaykumar Parkar

Thank you. You explain things very clearly.

- Neil Thomas

mega nützliche tipp danke bro

- milo

Creative CommonsThis work is licensed under a Creative Commons Attribution-NonCommercial- ShareAlike 4.0 International License.
Join the Tech Talk
Success! Thank you! Please check your email for further details.

Please complete your information!

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.