Skip to content

Instantly share code, notes, and snippets.

@Frenzycore
Created December 17, 2025 12:18
Show Gist options
  • Select an option

  • Save Frenzycore/fc443c2e0019e52d71609272a070bea5 to your computer and use it in GitHub Desktop.

Select an option

Save Frenzycore/fc443c2e0019e52d71609272a070bea5 to your computer and use it in GitHub Desktop.
language i made
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