mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 17:03:07 +09:00
6 lines
261 B
Python
6 lines
261 B
Python
def main(request, response):
|
|
headers = [("Content-type", "text/html;charset=shift-jis")]
|
|
# Shift-JIS bytes for katakana TE SU TO ('test')
|
|
content = chr(0x83) + chr(0x65) + chr(0x83) + chr(0x58) + chr(0x83) + chr(0x67);
|
|
|
|
return headers, content
|