Hash → Form Autofill (no /?)

Drop JSON (or plain text) after #= in the URL. This page reads it and fills the form automatically. Works on GitHub Pages.

Demo form

Quick link builder

Paste JSON or text below and get a sharable URL that uses #= (no query string).

Generated link:

Supports JSON, URL-encoded text, and URL-safe Base64 JSON.

How to use

  1. Put your data after the hash with an equals sign: https://truenix.github.io/#={data}.
  2. JSON is best. Example:
    #={"name":"Jane","email":"jane@example.com","subject":"Hello","message":"Hi!"}
  3. Alternatively, pass URL-safe Base64 JSON (good for special characters):
    #=eyJuYW1lIjoiSmFuZSIsImVtYWlsIjoiamFuZUBleGFtcGxlLmNvbSIsInN1YmplY3QiOiJIZWxsbyIsIm1lc3NhZ2UiOiJIaSEifQ
  4. If it isn't JSON, the raw text will go into the Message field.