print u'ab\x20cd' # 8-bit/1-byte characters print u'ab\u0020cd' # 2-byte characters print u'ab\U00000020cd' # 4-byte characters