[ create a new paste ] login | about

Link: http://codepad.org/xVLWyt7b    [ raw code | output | fork ]

sah - Python, pasted on Apr 18:
1
2
3
4
5
6
7
# -*- coding: utf-8 -*-

import codecs
import sys
sys.stdout = codecs.getwriter('utf-8')(sys.stdout)

print u'©'


Output:
1
©


Create a new paste based on this one


Comments: