I'm playing with \N{name}
(character named name in the Unicode database) but it doesn't work.
Typing this code:
print "\N{GREEK CAPITAL LETTER DELTA}"
or this variant:
print u"\N{GREEK CAPITAL LETTER DELTA}"
I get the result:
\N{GREEK CAPITAL LETTER DELTA}
in both cases.
What is the problem? Why didn't I get a character from the Unicode database?