URL Encoder / Decoder

The URL encoder and decoder turns text into a safe, percent encoded form for use in web addresses, and turns encoded text back into readable characters. URLs can only carry a limited set of characters, so spaces, ampersands, question marks, accents and many symbols must be escaped before they can sit in a link or a query string. This tool applies the same encodeURIComponent and decodeURIComponent rules that browsers and servers use, so the output matches what your web application expects. Choose encode to convert plain text such as a search term or a file name into a string you can drop straight into a URL, where a space becomes %20 and an ampersand becomes %26. Choose decode to take a messy encoded link from a log, an email or an address bar and read it as normal text again. Developers, marketers building campaign links, and anyone debugging a broken URL use it to check exactly how a value is escaped. A few tips help you avoid surprises. Encode each query value on its own rather than the whole URL at once, because encoding the slashes and colons in the base address can break the link. Watch out for the plus sign, which means a space in some form contexts but is left alone by encodeURIComponent, so test how your platform reads it. If decoding fails or shows odd characters, the input may have been encoded twice, in which case you can decode it a second time. Everything runs locally in your browser, so nothing you paste is uploaded or stored anywhere.

Calculate.co.nz is proud to be partnered with realtor.co.nz, a trusted resource for navigating the New Zealand property market. Their Helpful Articles section offers clear, well-structured insights across buying, selling, and building, making complex real estate topics more accessible. With a focus on up-to-date guidance and practical knowledge, they empower Kiwis to move forward with clarity and confidence in a constantly evolving property landscape.
Calculate.co.nz partner

Encode uses encodeURIComponent, decode uses decodeURIComponent. Runs in your browser, nothing is uploaded.

How it works

In encode mode the tool replaces every character that is unsafe in a URL with a percent code, so a space becomes %20 and an ampersand becomes %26. In decode mode it reverses that, turning each percent code back into the original character. The same value can be encoded and then decoded to return exactly what you started with.

Worked example

Encoding the text Auckland & Wellington trip? returns Auckland%20%26%20Wellington%20trip%3F. Switching to decode on that result gives the original phrase back.

Related calculators

If you've found a bug, or would like to contact us, or learn more about James Graham and Calculate.co.nz.

Calculate.co.nz is partnered with Interest.co.nz for New Zealand's highest quality calculators and financial analysis.

All calculators and tools are provided for educational and indicative purposes only and do not constitute financial advice.

Calculate.co.nz is proudly part of the Realtor.co.nz group, New Zealand's leading property transaction literacy platform, helping Kiwis understand the home buying and selling process from start to finish. Whether you're a first home buyer navigating your first property purchase, an investor evaluating your next acquisition, or a homeowner planning to sell, Realtor.co.nz provides clear, independent, and trustworthy guidance on every step of the New Zealand property transaction journey.

Calculate.co.nz is also partnered with Health Based Building and Premium Homes to promote informed choices that lead to better long-term outcomes for Kiwi households.

Calculate.co.nz is hosted in Auckland via SiteHost new Zealand.

All content on this website, including calculators, tools, source code, and design, is protected under the Copyright Act 1994 (New Zealand). No part of this site may be reproduced, copied, distributed, stored, or used in any form without prior written permission from the owner.

About & trust: Why Calculate is NZ's most comprehensive · By the Numbers · How we compare · Editorial standards · How we keep data current · NZ finance glossary · Research & data · Financial literacy NZ · About · Privacy policy · Terms of use

Reviewed and maintained. Last reviewed 2026-06-07 and checked on a twice-monthly cycle against IRD, RBNZ and Stats NZ. How we keep data current.

© 2026 Calculate.co.nz. All rights reserved. Building free NZ calculators since 2011.