i am trying to convert the html entity to unichar, the html entity is 󮠖 when i try to do the following:

unichr(int(976918))

i got error that:

ValueError: unichr() arg not in range(0x10000) (narrow Python build)

seems like it is out of range conversion for unichar, any help in this regard is appreciated, thanks.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

In order for this to work, you either need to build Python yourself, specifying

./configure --enable-unicode=ucs4

before compiling, or else you need to move to Python 3.

Even if you do this, there are apparently problems on Windows, which will be fixed in the next version of Python (3.3).

link|improve this answer
feedback

If you have the code point as a hex string (zfill'd to 8 characters), you can create the Unicode character as follows:

>>> c = (r'\U' + '000ee816').decode('unicode-escape')
>>> c
u'\U000ee816'

On a narrow build it's actually stored as a UTF-16 surrogate pair:

>>> c[0], c[1]
(u'\udb7a', u'\udc16')

However, encoding the character will properly handle the surrogate pair:

>>> c.encode('utf8')
'\xf3\xae\xa0\x96'
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.