mirror of
https://github.com/msikma/pokesprite.git
synced 2026-03-26 12:04:35 -05:00
8 lines
182 B
Python
Executable File
8 lines
182 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# prints JSON-usable japanese
|
|
# example: $ ./jsonjp.py モクロー
|
|
# output: "\u30e2\u30af\u30ed\u30fc"
|
|
import json
|
|
import sys
|
|
print(json.dumps(sys.argv[1])) |