Created
February 7, 2023 08:55
-
-
Save benolee/a834600345f1973992bb9513d50555aa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# coding: utf-8 | |
require 'json' | |
mapping = JSON.parse(DATA.read)['ascii_to_unicode'] | |
puts mapping.reduce($<.read) { |a, (k,v)| a.gsub(k, v) } | |
__END__ | |
{ | |
"ascii_to_unicode": { | |
"am": "㏂", | |
"au": "㍳", | |
"bar": "㍴", | |
"bq": "㏃", | |
"cal": "㎈", | |
"cc": "㏄", | |
"cd": "㏅", | |
"cm": "㎝", | |
"co": "㏇", | |
"da": "㍲", | |
"dl": "㎗", | |
"fm": "㎙", | |
"g": "g", | |
"gb": "㎇", | |
"ghz": "㎓", | |
"gpa": "㎬", | |
"gy": "㏉", | |
"ha": "㏊", | |
"hp": "㏋", | |
"hpa": "㍱", | |
"hz": "㎐", | |
"in": "㏌", | |
"ka": "㎄", | |
"kb": "㎅", | |
"kg": "㎏", | |
"khz": "㎑", | |
"kl": "㎘", | |
"km": "㏎", | |
"kpa": "㎪", | |
"kt": "㏏", | |
"kv": "㎸", | |
"kw": "㎾", | |
"lm": "㏐", | |
"ln": "㏑", | |
"log": "㏒", | |
"lx": "㏓", | |
"ma": "㎃", | |
"mb": "㏔", | |
"mg": "㎎", | |
"mhz": "㎒", | |
"mil": "㏕", | |
"ml": "㎖", | |
"mm": "㎜", | |
"mpa": "㎫", | |
"ms": "㎳", | |
"mv": "㎹", | |
"mw": "㎿", | |
"na": "㎁", | |
"nf": "㎋", | |
"nm": "㎚", | |
"ns": "㎱", | |
"nw": "㎻", | |
"pa": "㎩", | |
"pc": "㍶", | |
"pf": "㎊", | |
"ph": "㏗", | |
"pm": "㏘", | |
"ppm": "㏙", | |
"pr": "㏚", | |
"ps": "㎰", | |
"pw": "㎺", | |
"rad": "㎭", | |
"sr": "㏛", | |
"sv": "㏜", | |
"thz": "㎔", | |
"wb": "㏝" | |
}, | |
"unicode_to_ascii": { | |
"㏂": "am", | |
"㍳": "au", | |
"㍴": "bar", | |
"㏃": "bq", | |
"㎈": "cal", | |
"㏄": "cc", | |
"㏅": "cd", | |
"㎝": "cm", | |
"㏇": "co", | |
"㍲": "da", | |
"㎗": "dl", | |
"㎙": "fm", | |
"g": "g", | |
"㎇": "gb", | |
"㎓": "ghz", | |
"㎬": "gpa", | |
"㏉": "gy", | |
"㏊": "ha", | |
"㏋": "hp", | |
"㍱": "hpa", | |
"㎐": "hz", | |
"㏌": "in", | |
"㎄": "ka", | |
"㎅": "kb", | |
"㎏": "kg", | |
"㎑": "khz", | |
"㎘": "kl", | |
"㏎": "km", | |
"㎪": "kpa", | |
"㏏": "kt", | |
"㎸": "kv", | |
"㎾": "kw", | |
"㏐": "lm", | |
"㏑": "ln", | |
"㏒": "log", | |
"㏓": "lx", | |
"㎃": "ma", | |
"㏔": "mb", | |
"㎎": "mg", | |
"㎒": "mhz", | |
"㏕": "mil", | |
"㎖": "ml", | |
"㎜": "mm", | |
"㎫": "mpa", | |
"㎳": "ms", | |
"㎹": "mv", | |
"㎿": "mw", | |
"㎁": "na", | |
"㎋": "nf", | |
"㎚": "nm", | |
"㎱": "ns", | |
"㎻": "nw", | |
"㎩": "pa", | |
"㍶": "pc", | |
"㎊": "pf", | |
"㏗": "ph", | |
"㏘": "pm", | |
"㏙": "ppm", | |
"㏚": "pr", | |
"㎰": "ps", | |
"㎺": "pw", | |
"㎭": "rad", | |
"㏛": "sr", | |
"㏜": "sv", | |
"㎔": "thz", | |
"㏝": "wb" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment