Python で Unicode コード ポイントを表す int を Unicode 文字 (文字列) に変換する方法はありますか? Python3+ と Python 2.7 の両方で同じ変換コードを実行できます。
結果の文字列は Unicode 文字列で、Py3 ではプレーン文字列か、Py3from __future__ import unicode_literals
以前では ' ' を使用しています。
したがって、次のことが必要です。
i = 404
c = chr_or_unichr (i) # this code is identical for different Python versions
>>> c
'Ɣ'