Skip to main content
Log in

Mojo function

chr

chr(c: Int) -> String

Returns a string based on the given Unicode code point.

Returns the string representing a character whose code point is the integer c. For example, chr(97) returns the string "a". This is the inverse of the ord() function.

Args:

  • ​c (Int): An integer that represents a code point.

Returns:

A string containing a single character based on the given code point.

Was this page helpful?