pull down to refresh

Has any encountered a non-standard way to represent bitcoin addresses?
Like a non-technical way to represent the actual data in a bitcoin address. Seed phrases are good jumping off point of what I'm looking for: where 12 common words can replace the underlying byte data for a private key. Baiscally I'm looking for encoding schemes that don't look intimidating to non-technical folks.
(I'm not looking for DNS system where some registry maps usernames to stored addresses, e.g. @bounty_hunter -> bc1qcq...uhhv, @xyz -> bc1abc...lmno And not looking for a qr code or something.)
Update: Also interested in ways to represent pubkeys on Nostr
Update, I've written the first draft of my idea (cross-posted here: #1085919)
This address: 12Wfw4L3oPJFk2q6osDoZLYAwdFkhvgt4E (which can be seen on mempool here) can be represented as:
The king, whose power and pride, were known through the realms of earth to shine, In harness proud as eagle with the morning wind entwin. Now with what grace he did command his people in this wise. Their daily toiling lives for them to thine
or
The king, a man of noble grace, did dwell in state within a towr that loomed above all other loft, where eagles, soaring free in azured heights would cast, in envied sight, a winking glace at him who ruled, and in his hand a golden rod of rule he held alight, with sceptered power to rule and right, and with
It doesn't have to be "The king..." that's just the first prompt I was trying.
reply
From my understanding pubkeys have 2 formats: format1: npub1xchtl75ftt9s4f8v9ugetxcuyvawcgn47cdnhmhpnvdkujfwyuvs34sudw (63 characters aka Bech32) format2: 362ebffa895acb0aa4ec2f11959b1c233aec2275f61b3beee19b1b6e492e2719 (64 characters aka Hex-Encoded)
If I had any programming skills, I would try to use https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki to convert the hex-encoded public key into a word list, but that is as far as I can go ...
reply