Reputation: 131
Is it possible to use a superscript for a Unicode character?
For example, I have the expression aaa=u'Intel\u00AE'
that creates the registered symbol as expected, but how could it be made a superscript?
Upvotes: 1
Views: 565
Reputation: 15621
Unicode does not support making arbitrary characters into superscripts. There are pre-encoded superscript characters; they are different characters you can convert to.
If you want to make an arbitrary character a superscript you'll need to use markup or a typesetting system.
Upvotes: 4