19 lines
256 B
Python
19 lines
256 B
Python
#!/usr/bin/env python
|
|
# -*- encoding: utf-8 -*-
|
|
"""
|
|
Topic: sample
|
|
Desc :
|
|
"""
|
|
import sys, os
|
|
|
|
__author__ = 'Xiong Neng'
|
|
|
|
|
|
def test_f(fmt, *args, exc_info, extra):
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
print(chr(57344))
|
|
print(ord('\ue000'))
|