The gamertag generator creates punchy gaming handles for Xbox, PlayStation, Steam, Discord, or any account that needs a memorable username. Each click produces eight options, with optional numbers and leetspeak so you can dial in the style.
How it works
Every tag is built from two word lists baked into the tool — a list of adjectives and a list of nouns. The generator:
- Picks one random adjective and one random noun and joins them (e.g.
ShadowWolf). - If Leetspeak is on, it swaps letters for look-alike digits (a→4, e→3, i→1, o→0), turning
ShadowWolfintoSh4d0wW0lf. - If Add numbers is on, it appends a random integer from 0 to 999 (e.g.
ShadowWolf742).
It repeats this eight times per click. All random picks use crypto.getRandomValues with rejection sampling, so the choices are cryptographically unbiased rather than the predictable Math.random.
Example
With both options enabled, one generated batch might include:
| Style | Example tag |
|---|---|
| Plain | FrostFalcon |
| With numbers | FrostFalcon318 |
| Leetspeak | Fr0stF4lc0n |
| Leet + numbers | Fr0stF4lc0n318 |
Tap any tag to copy it. Everything runs in your browser — nothing you generate ever leaves your device.