79691329.xyz

NOVA

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.

01

Every character has a number

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.

N
4E
78 dec
O
4F
79 dec
V
56
86 dec
A
41
65 dec
02

Concatenate the hex bytes

Take the four hex values and join them together as a single hexadecimal number:

// N    O    V    A
"4E" + "4F" + "56" + "41" = "4E4F5641"
03

Convert hex → decimal

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

// Full conversion chain

word
NOVA
ascii hex
4E 4F 56 41
concatenated
4E4F5641
decimal
79691329
domain
79691329.xyz

// currently used as