The karate belt order confuses a lot of people walking into their first dojo—and honestly, it should. White to yellow to orange to green to blue to purple to brown to black. But that’s the thing: the colors aren’t actually an ancient tradition. They’re barely a century old.
Jigoro Kano, the founder of Judo, invented the karate belt ranking system in the early 1900s to provide a visible way to track students’ progress. Gichin Funakoshi brought it to Shotokan Karate, and now every strip mall dojo from Tokyo to Texas uses some version of it. The specific colors? Those vary wildly between styles. What doesn’t change is the structure underneath.
This guide will demystify the Karate belt system. We’ll explore its surprisingly modern history, walk through the typical progression of ranks from the beginner “kyu” grades to the advanced “dan” levels, and explain the philosophy behind each stage of a karateka’s development.
Here’s the reality: Karate belt ranks break into two distinct phases, and understanding this distinction separates people who actually train from people who just watch YouTube videos about training.
Contrary to popular belief, the karate belt system isn’t centuries old. Before the 20th century, there were often no ranks. A popular story recounts students whose white belts would gradually darken over the years of training, becoming blackened with sweat, dirt, and time.
Kyu ranks are your colored belts—everything before black. The word “kyu” literally means “grade” or “class,” and you’re counting down. A 10th kyu white belt has nine more steps before reaching the 1st kyu brown belt.
Dan ranks are your black belts. “Dan” means “step” or “degree,” and unlike kyu, you’re counting up. First dan (shodan) is your entry point. Some masters reach 9th or 10th dan, though those ranks are typically reserved for founders of styles or lifetime contributors to the art.
Jigoro Kano, founder of Judo,
Breaking Down the Kyu Ranks
The journey for every karateka begins with the Kyu (級) grades. The exact colors differ between Shotokan, Kyokushin, Wado-ryu, and other major styles. But the progression philosophy stays consistent:
White Belt (10th Kyu) — Everyone starts here. Your focus is entirely on fundamentals: basic stances (dachi), punches (tsuki), blocks (uke), and kicks (geri). You’re also learning how to bow correctly, where to stand in class, and how not to embarrass yourself during warmups. Takes about 3-4 months of consistent training.
Yellow Belt (9th Kyu) — Your first promotion. You’ve proven you can learn. Now you’re combining basics into sequences and working on your first kata (forms). The movements still feel awkward. That’s normal.
Orange Belt (8th Kyu) — Power and stability become priorities. Many dojos introduce sparring (kumite) drills here. You’re learning timing and distance, which matters more than raw technique once you actually face an opponent.
Green Belt (7th Kyu) — This is where things get interesting. Your techniques are becoming refined. You understand several kata and their applications (bunkai). You’re starting to see why the old masters designed these movements the way they did.
Blue Belt (6th Kyu) and Purple Belt (5th Kyu) — Advanced intermediate territory. Your movements are more fluid, your sparring shows actual control, and instructors expect mental focus, not just physical effort. The order of these two colors flips depending on the style—don’t let anyone tell you there’s only one correct sequence.
Brown Belt (3rd to 1st Kyu) — The final stage before black. You’re polishing everything you’ve learned. Many brown belts assist with teaching lower ranks, which forces you to understand techniques rather than just perform them truly. This phase is physically and mentally demanding by design. It’s the final test to see if you actually want this.
What Black Belt Actually Means
Come on—you’ve heard people say “black belt” like it means expert, master, unstoppable. Here’s what it actually means: you’ve mastered the fundamentals. That’s it. That’s the beginning, not the end.
Shodan (1st Dan) typically takes 3-5 years of consistent training. You have a functional, solid understanding of karate. You’re proficient in techniques, kata, and sparring. The analogy I always use: you’ve learned the alphabet. Now you can start writing poetry.
Nidan through Yondan (2nd-4th Dan) represent years of continued training, teaching, and deepening your understanding of the art’s principles. Most people never reach these ranks because life gets in the way. That’s not failure—that’s reality.
Godan and above (5th Dan+) are master-level ranks. These are often awarded not just for technical skill but for significant contributions to karate itself: leading organizations, developing students who become instructors, and promoting the art globally. You don’t test for these ranks. They’re bestowed.
How Karate Belt Testing Actually Works
Promotion isn’t automatic, and it shouldn’t be. To advance, you stand before a panel of senior instructors who evaluate you on:
Kihon (Basics) — Can you perform stances, punches, kicks, and blocks with proper form under pressure?
Kata (Forms) — Can you demonstrate pre-arranged patterns with precision, power, and genuine understanding of what each movement means?
Kumite (Sparring) — Can you actually apply techniques against someone who’s trying to hit you back?
Knowledge and Character — Do you know the terminology? Do you understand dojo etiquette? Do you demonstrate humility and respect—or are you just there for the belt?
That last part matters more than most people realize. Instructors can tell when someone’s chasing colors versus chasing skill. The belt is just an external recognition of internal development. The skill is always what matters.
The Bottom Line
The karate belt order exists to give students a structured path through an art that would otherwise feel overwhelming. White through brown builds your foundation. Black belt says you’re ready, actually, to begin learning.
Different styles use different colors in various sequences. Shotokan isn’t Kyokushin, and Kyokushin isn’t Wado-ryu. But the underlying philosophy is universal: show up consistently, train honestly, respect the art and the people teaching it, and the ranks will come.
If you’re just starting, focus on showing up. If you’re a brown belt reading this, you already know what’s required next. And if you’ve got that black belt—congratulations, you’ve earned the right to start over as a beginner at a deeper level.
That’s the real tradition, even if the colored belts themselves aren’t that old.
Ringside Report Network’s Combat Sports Gym Finder
Find BJJ, Boxing, Muay Thai & more near you
All Countries
United States
Canada
United Kingdom
Australia
Brazil
Germany
France
Japan
Mexico
Netherlands
Ireland
New Zealand
Philippines
Poland
Russia
South Africa
South Korea
Spain
Sweden
Thailand
Please select at least one discipline to search for gyms.
Enter your location, select disciplines, then search to find combat sports gyms nearby
Gyms near
Tap any discipline above to view gyms on Google Maps
${externalIcon}
`;
gymLinks.appendChild(link);
}
});
}
// Geocoding with multiple fallback attempts
async function geocodeLocation(query, country) {
const searchQueries = [];
// Build search queries in order of specificity
if (country) {
searchQueries.push(`${query}, ${country}`);
}
searchQueries.push(query);
// If query looks like an address, also try just the city/region part
if (query.includes(‘,’)) {
const parts = query.split(‘,’).map(p => p.trim());
if (parts.length >= 2) {
// Try city, country
if (country) {
searchQueries.push(`${parts[1]}, ${country}`);
}
searchQueries.push(parts[1]);
}
}
// Try postal code pattern (for Canada: A1A 1A1, for US: 12345)
const postalMatch = query.match(/[A-Za-z]\d[A-Za-z]\s*\d[A-Za-z]\d|\d{5}/);
if (postalMatch && country) {
searchQueries.push(`${postalMatch[0]}, ${country}`);
}
for (const searchQuery of searchQueries) {
try {
const response = await fetch(
`https://nominatim.openstreetmap.org/search?q=${encodeURIComponent(searchQuery)}&format=json&limit=1&addressdetails=1`,
{
headers: {
‘Accept’: ‘application/json’
}
}
);
if (!response.ok) continue;
const data = await response.json();
if (data.length > 0) {
return {
lat: parseFloat(data[0].lat),
lng: parseFloat(data[0].lon),
displayName: data[0].display_name,
searchUsed: searchQuery
};
}
} catch (err) {
console.log(‘Geocode attempt failed for:’, searchQuery);
continue;
}
}
return null;
}
async function searchLocation() {
const query = locationInput.value.trim();
const country = countrySelect.value;
if (!query) {
showError(‘Please enter a location’);
return;
}
if (selectedTypes.length === 0) {
showWarning();
return;
}
hideError();
hideWarning();
hideInfo();
setLoading(true);
try {
const result = await geocodeLocation(query, country);
if (result) {
coordinates = { lat: result.lat, lng: result.lng };
locationName = result.displayName.split(‘,’).slice(0, 3).join(‘,’);
// Update input with friendly name
const friendlyName = result.displayName.split(‘,’)[0].trim();
locationInput.value = friendlyName;
showResults();
} else {
showError(‘Location not found. Try a city name or postal code.’);
}
} catch (err) {
showError(‘Error searching for location. Please try again.’);
}
setLoading(false);
}
function useGeolocation() {
if (!navigator.geolocation) {
showError(‘Geolocation is not supported by your browser’);
return;
}
if (selectedTypes.length === 0) {
showWarning();
return;
}
hideError();
hideWarning();
hideInfo();
setLoading(true);
navigator.geolocation.getCurrentPosition(
async (position) => {
coordinates = {
lat: position.coords.latitude,
lng: position.coords.longitude
};
try {
const response = await fetch(
`https://nominatim.openstreetmap.org/reverse?lat=${coordinates.lat}&lon=${coordinates.lng}&format=json&addressdetails=1`
);
const data = await response.json();
const city = data.address?.city || data.address?.town || data.address?.village || data.address?.municipality || ”;
const state = data.address?.state || data.address?.province || ”;
const country = data.address?.country || ”;
locationName = [city, state, country].filter(Boolean).join(‘, ‘);
locationInput.value = city || locationName;
} catch {
locationName = `${coordinates.lat.toFixed(4)}, ${coordinates.lng.toFixed(4)}`;
locationInput.value = locationName;
}
setLoading(false);
showResults();
},
(err) => {
let errorMsg = ‘Unable to get your location. ‘;
if (err.code === 1) {
errorMsg += ‘Please allow location access or enter your location manually.’;
} else if (err.code === 2) {
errorMsg += ‘Position unavailable. Please enter your location manually.’;
} else {
errorMsg += ‘Please enter your location manually.’;
}
showError(errorMsg);
setLoading(false);
},
{ enableHighAccuracy: true, timeout: 10000 }
);
}
// Event Listeners
searchBtn.addEventListener(‘click’, searchLocation);
locationInput.addEventListener(‘keydown’, (e) => {
if (e.key === ‘Enter’) searchLocation();
});
gpsBtn.addEventListener(‘click’, useGeolocation);
filterToggle.addEventListener(‘click’, () => {
filters.classList.toggle(‘show’);
});
filterBtns.forEach(btn => {
btn.addEventListener(‘click’, () => {
const type = btn.dataset.type;
if (btn.classList.contains(‘active’)) {
selectedTypes = selectedTypes.filter(t => t !== type);
btn.classList.remove(‘active’);
} else {
selectedTypes.push(type);
btn.classList.add(‘active’);
}
updateFilterCount();
if (coordinates && selectedTypes.length > 0) {
showResults();
}
});
});
selectAllBtn.addEventListener(‘click’, () => {
selectedTypes = [];
filterBtns.forEach(btn => {
btn.classList.add(‘active’);
selectedTypes.push(btn.dataset.type);
});
updateFilterCount();
if (coordinates) showResults();
});
clearAllBtn.addEventListener(‘click’, () => {
selectedTypes = [];
filterBtns.forEach(btn => {
btn.classList.remove(‘active’);
});
updateFilterCount();
});
// Unit toggle
unitKm.addEventListener(‘click’, () => {
distanceUnit = ‘km’;
unitKm.classList.add(‘active’);
unitMiles.classList.remove(‘active’);
});
unitMiles.addEventListener(‘click’, () => {
distanceUnit = ‘miles’;
unitMiles.classList.add(‘active’);
unitKm.classList.remove(‘active’);
});
})();
Karate Belts FAQs
How long does it take to get a black belt in Karate?
For a dedicated student training consistently (2-3 times per week), the average time to earn a first-degree black belt is 3 to 5 years.
Do all Karate styles use the same belt colors?
No. While the Kyu/Dan structure is typical, the specific colors and their order (e.g., whether purple comes before or after blue) can vary between major styles, such as Shotokan, Kyokushin, and Wado-ryu.
Is a black belt an “expert”?
A first-degree black belt (Shodan) is an expert in the fundamentals. They have built a strong foundation. The higher Dan ranks represent deeper levels of mastery and expertise.
What is more important, the belt or the skill?
The skill is always more important. The belt is simply an external recognition of the time, effort, and knowledge you have accumulated on your journey. A true martial artist focuses on continuous improvement, not just the color of the belt around their waist.
Gene LeBell (1932-2022) was “The Toughest Man Alive” — a two-time national Judo champion, 10th degree red belt, professional wrestler, and Hollywood legend with over 1,000 film credits. He competed in the first televised MMA fight in America (1963), trained Bruce Lee in grappling, allegedly choked out Steven Seagal, and mentored Ronda Rousey. This is the complete story of the man who connected Judo, catch wrestling, pro wrestling, and MMA.
Unlock the secrets of the top 10 MMA chokes every fighter needs to know. From the legendary Rear Naked Choke to the intricate Gogoplata, we break down the mechanics, strategies, and defenses for each submission. Whether you’re a seasoned competitor or just starting your journey, mastering these chokes will give you a decisive edge over your opponents. Discover how to control, dominate, and finish fights with precision and power.
Embark on a journey through the colorful world of judo belts! This comprehensive guide delves into the significance of each rank, from the humble white belt of the beginner to the coveted black belt of the master. Discover the intricate system of kyū and dan grades, the role of sparring and competitions, and how the pursuit of judo mastery fosters personal growth and cultivates a vibrant community. Unravel the rich tapestry of tradition, discipline, and self-improvement woven into every judo belt.
Mark Smith tore his ACL during UFC 324 while refereeing Gautier vs Pulyaev. The 52-year-old veteran finished all 15 minutes on a blown knee, then was carried out of T-Mobile Arena. Dana White compared it to Bruce Buffer’s 2011 injury—the only other non-fighter ACL tear he’s witnessed in UFC history.