惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

IT之家
IT之家
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
美团技术团队
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园_首页
MyScale Blog
MyScale Blog
N
Netflix TechBlog - Medium
I
InfoQ
Jina AI
Jina AI
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
量子位
月光博客
月光博客
罗磊的独立博客
雷峰网
雷峰网
The Cloudflare Blog
V
V2EX
小众软件
小众软件
人人都是产品经理
人人都是产品经理
博客园 - Franky
T
Tailwind CSS Blog
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
URL Encoding vs Percent Encoding — Are They the Same Thing?
Code Wiz Tools · 2026-06-20 · via DEV Community

Most developers use these two terms interchangeably. Stack Overflow threads mix them up. Documentation switches between them mid-paragraph. Even MDN uses both terms in the same article.
So are they the same thing — or is there a real difference?
Short answer: they refer to the same mechanism, but come from different contexts. Understanding which is which will save you from some genuinely painful debugging sessions.
What is URL Encoding?


URL encoding is the informal, developer-facing term for converting unsafe characters in a URL into a format that can be safely transmitted over the internet.
The core problem it solves: URLs can only contain a limited set of characters. Letters (A–Z, a–z), digits (0–9), and a handful of symbols (-, _, ., ~) are always safe. Everything else — spaces, ampersands, equal signs, non-English characters — can break URL parsing if left as-is.
URL encoding converts those unsafe characters into a % sign followed by a two-digit hexadecimal code.
hello world → hello%20world
café → caf%C3%A9
q=a&b → q%3Da%26b
This term became common because browsers, frameworks, and tutorials all started calling it "URL encoding" — it is descriptive and practical.
What is Percent Encoding?
Percent encoding is the official, RFC-defined term for the exact same mechanism.
It is formally defined in RFC 3986 — the Internet standard that defines the syntax of URIs (Uniform Resource Identifiers). The spec calls it "percent-encoding" because every encoded character is represented as a percent sign followed by two hexadecimal digits.
From RFC 3986:

A percent-encoding mechanism is used to represent a data octet in a component when that octet's corresponding character is outside the allowed set or is being used as a delimiter of, or within, the component.

So when you are reading a W3C spec, an HTTP RFC, or any formal documentation — you will see "percent encoding." When you are reading a tutorial, a Stack Overflow answer, or framework docs — you will see "URL encoding."
Same thing. Different contexts.
The Real Difference You Actually Need to Know
Here is where it gets practical — and where most bugs come from.
In JavaScript, you have two built-in functions for encoding URLs. They are not interchangeable:
encodeURI vs encodeURIComponent — Code Examples
The Wrong Way (a very common mistake)

const searchUrl = "https://example.com/search?q=hello world&lang=en";
// WRONG — using encodeURIComponent on a full URL
encodeURIComponent(searchUrl);
// → "https%3A%2F%2Fexample.com%2Fsearch%3Fq%3Dhello%20world%26lang%3Den"
// The URL is now completely broken — slashes, colons, question marks all encoded
This is the most common mistake. The URL looks encoded, but it is useless — a browser cannot parse it as a URL anymore.
The Right Way — encodeURI for full URLs
const searchUrl = "https://example.com/search?q=hello world&lang=en";

// CORRECT — encodeURI preserves URL structure
encodeURI(searchUrl);
// → "https://example.com/search?q=hello%20world&lang=en"
// Only the space is encoded — the URL structure is intact

The Right Way — encodeURIComponent for query values
const userInput = "hello world & more";
const baseUrl = "https://example.com/search?q=";

// CORRECT — encode only the VALUE, not the whole URL
const fullUrl = baseUrl + encodeURIComponent(userInput);
// → "https://example.com/search?q=hello%20world%20%26%20more"
// The & inside the value is encoded to %26 — no ambiguity

Real-world example — passing a redirect URL in a query string
// You want to pass this URL as a query parameter value
const redirectUrl = "https://myapp.com/dashboard?tab=settings";

// WRONG — this breaks the outer URL's query string
"https://auth.example.com/login?redirect=" + redirectUrl;
// → "https://auth.example.com/login?redirect=https://myapp.com/dashboard?tab=settings"
// The second ? and = confuse every URL parser

// CORRECT — encode the redirect value first
"https://auth.example.com/login?redirect=" + encodeURIComponent(redirectUrl);
// → "https://auth.example.com/login?redirect=https%3A%2F%2Fmyapp.com%2Fdashboard%3Ftab%3Dsettings"
// Clean — outer URL parses correctly, inner URL recoverable via decodeURIComponent

The One-Line Rule to Remember
Use encodeURIComponent when encoding a value that goes inside a URL.
Use encodeURI when encoding a complete URL as a string.

If you remember nothing else from this article, remember that line. It will prevent 90% of URL encoding bugs.

Tool
If you need to quickly encode or decode URLs without writing code — I built a free URL Encoder & Percent Encoding Converter that supports both encodeURI and encodeURIComponent modes, handles full Unicode including Arabic and Urdu, and runs 100% in the browser with no data sent to any server.
It also includes the full percent encoding reference table and a real-time character counter — useful when debugging API calls or OAuth redirect parameters.
Conclusion
URL encoding and percent encoding are the same mechanism — one term is informal and developer-friendly, the other is the official RFC standard. The distinction that actually matters day-to-day is encodeURI vs encodeURIComponent — and using the wrong one is responsible for a surprising number of broken integrations, failed API calls, and corrupted redirect flows.
When in doubt: if you are encoding a value that goes inside a URL, use encodeURIComponent. Every time.

Found this useful? I am building CodeWizTools — a collection of free, browser-based utilities for developers and students. No login, no server uploads, 100% private.