Simple Unicode CGI Example (uniCGI.py) : Unicode « CGI Web « Python Tutorial
- Python Tutorial
- CGI Web
- Unicode
#!/usr/bin/env python
CODEC = 'UTF-8'
UNICODE_HELLO = u'''
Hello!
\u00A1Hola!
\u4F60\u597D!
\u3053\u3093\u306B\u3061\u306F!
'''
print 'Content-Type: text/html; charset=%s\r' % CODEC
print '\r'13print '<HTML><HEAD><TITLE>Unicode CGI Demo</TITLE></HEAD>'
print '<BODY>'
print UNICODE_HELLO.encode(CODEC)
print '</BODY></HTML>'
22.8.Unicode |
| 22.8.1. | Simple Unicode CGI Example (uniCGI.py) |