Created
December 17, 2025 12:18
-
-
Save Frenzycore/fc443c2e0019e52d71609272a070bea5 to your computer and use it in GitHub Desktop.
language i made
This file contains hidden or 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
| weirdcore = { | |
| "A": "?", | |
| "B": "☻", | |
| "C": "Θ", | |
| "D": "♠", | |
| "E": "3", | |
| "F": "O", | |
| "G": "8", | |
| "H": "☹", | |
| "I": "5", | |
| "J": "=)", | |
| "K": "2", | |
| "L": "┐", | |
| "M": "W", | |
| "N": "S", | |
| "O": "👁", | |
| "P": "9", | |
| "Q": "Ꝙ", | |
| "R": "♡", | |
| "S": "+", | |
| "T": "⸸", | |
| "U": "¿", | |
| "V": "★", | |
| "W": "W", | |
| "X": "X", | |
| "Y": "y", | |
| "Z": "!?", | |
| } | |
| ask = input("S?mething: "); converted = "".join(weirdcore.get(c.upper(), c) for c in ask); print("Weirdc¿re:", converted) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment