According to the docs: > c - converts the integer to the corresponding unicode character before printing In my code, ``` console.log(format("c")(97)); ``` Just prints 97. I was expecting something along the lines of python: ``` >>> chr(97) 'a' ```