通过 Python 中的非 ASCII 代码打印 UTF 字符

Printing a UTF char by its non-ASCII code in Python

我想使用 Python 2.7.

通过其代码而不是字符本身来打印非 ASCII (UTF-8)

例如,我有以下内容:

# -*- coding: utf-8 -*-
print "…"

没关系。但是,我想使用相应的代码 '\xe2' 来打印 '...'。

有什么想法吗?

打印 '\xe2\x80\xa6' 会给你 ...

In [36]: print'\xe2\x80\xa6'
…

In [45]: print repr("…")
'\xe2\x80\xa6'