N=4E O=4F V=56 A=41
This domain is 79691329.xyz — but it spells something. Every number encodes the word NOVA using ASCII hex, the same character encoding system that underpins the internet. Here's how it works.
ASCII (American Standard Code for Information Interchange) assigns every letter, digit, and symbol a unique number. These numbers are typically written in hexadecimal (base 16) — using digits 0–9 and letters A–F.
Take the four hex values and join them together as a single hexadecimal number:
// N O V A "4E" + "4F" + "56" + "41" = "4E4F5641"
Domain names only allow digits (0–9) and hyphens — no A–F. So we convert the hex number into its base-10 (decimal) equivalent. You can verify this yourself:
// In your browser console: parseInt("4E4F5641", 16) // → 79691329 # Or in Python: int("4E4F5641", 16) # → 79691329
A proper email blackhole — accepts all mail, discards it silently.
Powered by Cloudflare Email Routing. Nothing is stored. Nothing is read.