- Is this the same as the browser's View Source?
- Similar but interactive — the viewer collapses tags, lets you click to jump between matching open/close pairs, and highlights attributes. View Source is static text.
- Can I see the rendered page?
- No — this is a source viewer, not a renderer. Use a sandboxed preview tool if you want to see the rendered output (and only for trusted HTML).
- Does it show hidden elements?
- Yes — every element in the source is visible regardless of display:none or aria-hidden. Useful for debugging CSS and audit issues.
- Will it execute scripts?
- Never. Script content is rendered as text; nothing runs. Safe to paste any HTML you want to inspect.