iKON ORIGINALS

iKON -
Not Available
×
/* main event listener that waits for the page to load before running the script */ document.addEventListener('DOMContentLoaded', () => { /* select the main elements from the HTML */ const slider = document.querySelector('.gallery1-slider'); const prevButton = document.querySelector('.gallery1-prev-button'); const nextButton = document.querySelector('.gallery1-next-button'); const youtubeItems = document.querySelectorAll('.gallery1-youtube-video'); const videoModal = document.getElementById('video-modal'); const videoFrame = document.getElementById('video-frame'); const closeButton = document.querySelector('.close-button'); /* keeps track of the current position in the carousel */ let currentIndex = 0; /* next Button Functionality */ nextButton.addEventListener('click', () => { const allItems = document.querySelectorAll('.gallery1-slider > *'); const itemWidth = allItems[0].offsetWidth + parseInt(window.getComputedStyle(allItems[0]).marginRight) * 2; const visibleItemsCount = Math.round(slider.offsetWidth / itemWidth); currentIndex = (currentIndex + 1); /* move to the next item */ const maxIndex = allItems.length - visibleItemsCount; /* loop back to the beginning */ if (currentIndex > maxIndex) {currentIndex = 0;} slider.style.transform = `translateX(-${currentIndex * itemWidth}px)`; /* show the next item */ }); /* previous Button Functionality */ prevButton.addEventListener('click', () => { const allItems = document.querySelectorAll('.gallery1-slider > *'); const itemWidth = allItems[0].offsetWidth + parseInt(window.getComputedStyle(allItems[0]).marginRight) * 2; const visibleItemsCount = Math.round(slider.offsetWidth / itemWidth); currentIndex = (currentIndex - 1); /* move to the previous item */ const maxIndex = allItems.length - visibleItemsCount; /* loop back to the end */ if (currentIndex < 0) {currentIndex = maxIndex;} slider.style.transform = `translateX(-${currentIndex * itemWidth}px)`; /* show the previous item */ }); /* youtube video modal */ youtubeItems.forEach(item => { item.addEventListener('click', () => { const videoUrl = item.querySelector('img').getAttribute('data-video-url'); if (videoUrl) { const videoId = videoUrl.split('v=')[1] || videoUrl.split('/').pop(); videoFrame.src = `https://www.youtube.com/embed/${videoId}?autoplay=1`; videoModal.style.display = 'block'; } }); }); closeButton.addEventListener('click', () => { /* closes the modal when close button is clicked */ videoFrame.src = ''; videoModal.style.display = 'none'; }); videoModal.addEventListener('click', (e) => { /* closes the modal when anywhere outside the video is clicked */ if (e.target === videoModal) { videoFrame.src = ''; videoModal.style.display = 'none'; } }); });

MUSIC VIDEOS

iKON - Panorama (Drama Ver.)
iKON - Panorama
iKON - U
iKON - Tantara (Performance Ver.)
iKON - Your Voice
iKON - But You
iKON - Why Why Why
iKON - Dive
iKON - I'm Ok
iKON - Freedom
iKON - Freedom
iKON - Goodbye Road
iKON - Killing Me
iKON - Just for You
iKON - Beautiful
iKON - Love Scenario
iKON - Love Me
iKON - Bling Bling
iKON - B-day
iKON - WYD
iKON - What's Wrong
iKON - Dumb & Dumber
iKON - Anthem
iKON - Apology (Dance Ver)
iKON - Apology
iKON - Rhythm Ta
iKON - Airplane
iKON - My Tpe
×
/* main event listener that waits for the page to load before running the script */ document.addEventListener('DOMContentLoaded', () => { /* select the main elements from the HTML */ const slider = document.querySelector('.gallery2-slider'); const prevButton = document.querySelector('.gallery2-prev-button'); const nextButton = document.querySelector('.gallery2-next-button'); const youtubeItems = document.querySelectorAll('.gallery2-youtube-video'); const videoModal = document.getElementById('video-modal'); const videoFrame = document.getElementById('video-frame'); const closeButton = document.querySelector('.close-button'); /* keeps track of the current position in the carousel */ let currentIndex = 0; /* next Button Functionality */ nextButton.addEventListener('click', () => { const allItems = document.querySelectorAll('.gallery2-slider > *'); const itemWidth = allItems[0].offsetWidth + parseInt(window.getComputedStyle(allItems[0]).marginRight) * 2; const visibleItemsCount = Math.round(slider.offsetWidth / itemWidth); currentIndex = (currentIndex + 1); /* move to the next item */ const maxIndex = allItems.length - visibleItemsCount; /* loop back to the beginning */ if (currentIndex > maxIndex) {currentIndex = 0;} slider.style.transform = `translateX(-${currentIndex * itemWidth}px)`; /* show the next item */ }); /* previous Button Functionality */ prevButton.addEventListener('click', () => { const allItems = document.querySelectorAll('.gallery2-slider > *'); const itemWidth = allItems[0].offsetWidth + parseInt(window.getComputedStyle(allItems[0]).marginRight) * 2; const visibleItemsCount = Math.round(slider.offsetWidth / itemWidth); currentIndex = (currentIndex - 1); /* move to the previous item */ const maxIndex = allItems.length - visibleItemsCount; /* loop back to the end */ if (currentIndex < 0) {currentIndex = maxIndex;} slider.style.transform = `translateX(-${currentIndex * itemWidth}px)`; /* show the previous item */ }); /* youtube video modal */ youtubeItems.forEach(item => { item.addEventListener('click', () => { const videoUrl = item.querySelector('img').getAttribute('data-video-url'); if (videoUrl) { const videoId = videoUrl.split('v=')[1] || videoUrl.split('/').pop(); videoFrame.src = `https://www.youtube.com/embed/${videoId}?autoplay=1`; videoModal.style.display = 'block'; } }); }); closeButton.addEventListener('click', () => { /* closes the modal when close button is clicked */ videoFrame.src = ''; videoModal.style.display = 'none'; }); videoModal.addEventListener('click', (e) => { /* closes the modal when anywhere outside the video is clicked */ if (e.target === videoModal) { videoFrame.src = ''; videoModal.style.display = 'none'; } }); });

PERFORMANCE VIDEOS

iKON - U
iKON - Jikjin
iKON - Why Why Why
Bobby JU-NE - Deep Night
iKON - I'm Ok
iKON - Goodbye Road
iKON - Killing
iKON - Apology (Dance Ver.)
×
/* main event listener that waits for the page to load before running the script */ document.addEventListener('DOMContentLoaded', () => { /* select the main elements from the HTML */ const slider = document.querySelector('.gallery3-slider'); const prevButton = document.querySelector('.gallery3-prev-button'); const nextButton = document.querySelector('.gallery3-next-button'); const youtubeItems = document.querySelectorAll('.gallery3-youtube-video'); const videoModal = document.getElementById('video-modal'); const videoFrame = document.getElementById('video-frame'); const closeButton = document.querySelector('.close-button'); /* keeps track of the current position in the carousel */ let currentIndex = 0; /* next Button Functionality */ nextButton.addEventListener('click', () => { const allItems = document.querySelectorAll('.gallery3-slider > *'); const itemWidth = allItems[0].offsetWidth + parseInt(window.getComputedStyle(allItems[0]).marginRight) * 2; const visibleItemsCount = Math.round(slider.offsetWidth / itemWidth); currentIndex = (currentIndex + 1); /* move to the next item */ const maxIndex = allItems.length - visibleItemsCount; /* loop back to the beginning */ if (currentIndex > maxIndex) {currentIndex = 0;} slider.style.transform = `translateX(-${currentIndex * itemWidth}px)`; /* show the next item */ }); /* previous Button Functionality */ prevButton.addEventListener('click', () => { const allItems = document.querySelectorAll('.gallery3-slider > *'); const itemWidth = allItems[0].offsetWidth + parseInt(window.getComputedStyle(allItems[0]).marginRight) * 2; const visibleItemsCount = Math.round(slider.offsetWidth / itemWidth); currentIndex = (currentIndex - 1); /* move to the previous item */ const maxIndex = allItems.length - visibleItemsCount; /* loop back to the end */ if (currentIndex < 0) {currentIndex = maxIndex;} slider.style.transform = `translateX(-${currentIndex * itemWidth}px)`; /* show the previous item */ }); /* youtube video modal */ youtubeItems.forEach(item => { item.addEventListener('click', () => { const videoUrl = item.querySelector('img').getAttribute('data-video-url'); if (videoUrl) { const videoId = videoUrl.split('v=')[1] || videoUrl.split('/').pop(); videoFrame.src = `https://www.youtube.com/embed/${videoId}?autoplay=1`; videoModal.style.display = 'block'; } }); }); closeButton.addEventListener('click', () => { /* closes the modal when close button is clicked */ videoFrame.src = ''; videoModal.style.display = 'none'; }); videoModal.addEventListener('click', (e) => { /* closes the modal when anywhere outside the video is clicked */ if (e.target === videoModal) { videoFrame.src = ''; videoModal.style.display = 'none'; } }); });

DANCE PRACTICE VIDEOS

iKON - But You
iKON - At Ease
iKON - Inception
iKON - LS KM
iKON - Why Why Why
iKON - Ah Yeah
iKON - Dive
iKON - Goodbye Road
iKON - Killing Me
iKON - Rubber Band
iKON - Beautiful
iKON - Love Scenario
iKON - Bday
iKON - Bling Bling
iKON - Apology
iKON - Rhythm Ta
×
/* main event listener that waits for the page to load before running the script */ document.addEventListener('DOMContentLoaded', () => { /* select the main elements from the HTML */ const slider = document.querySelector('.gallery4-slider'); const prevButton = document.querySelector('.gallery4-prev-button'); const nextButton = document.querySelector('.gallery4-next-button'); const youtubeItems = document.querySelectorAll('.gallery4-youtube-video'); const videoModal = document.getElementById('video-modal'); const videoFrame = document.getElementById('video-frame'); const closeButton = document.querySelector('.close-button'); /* keeps track of the current position in the carousel */ let currentIndex = 0; /* next Button Functionality */ nextButton.addEventListener('click', () => { const allItems = document.querySelectorAll('.gallery4-slider > *'); const itemWidth = allItems[0].offsetWidth + parseInt(window.getComputedStyle(allItems[0]).marginRight) * 2; const visibleItemsCount = Math.round(slider.offsetWidth / itemWidth); currentIndex = (currentIndex + 1); /* move to the next item */ const maxIndex = allItems.length - visibleItemsCount; /* loop back to the beginning */ if (currentIndex > maxIndex) {currentIndex = 0;} slider.style.transform = `translateX(-${currentIndex * itemWidth}px)`; /* show the next item */ }); /* previous Button Functionality */ prevButton.addEventListener('click', () => { const allItems = document.querySelectorAll('.gallery4-slider > *'); const itemWidth = allItems[0].offsetWidth + parseInt(window.getComputedStyle(allItems[0]).marginRight) * 2; const visibleItemsCount = Math.round(slider.offsetWidth / itemWidth); currentIndex = (currentIndex - 1); /* move to the previous item */ const maxIndex = allItems.length - visibleItemsCount; /* loop back to the end */ if (currentIndex < 0) {currentIndex = maxIndex;} slider.style.transform = `translateX(-${currentIndex * itemWidth}px)`; /* show the previous item */ }); /* youtube video modal */ youtubeItems.forEach(item => { item.addEventListener('click', () => { const videoUrl = item.querySelector('img').getAttribute('data-video-url'); if (videoUrl) { const videoId = videoUrl.split('v=')[1] || videoUrl.split('/').pop(); videoFrame.src = `https://www.youtube.com/embed/${videoId}?autoplay=1`; videoModal.style.display = 'block'; } }); }); closeButton.addEventListener('click', () => { /* closes the modal when close button is clicked */ videoFrame.src = ''; videoModal.style.display = 'none'; }); videoModal.addEventListener('click', (e) => { /* closes the modal when anywhere outside the video is clicked */ if (e.target === videoModal) { videoFrame.src = ''; videoModal.style.display = 'none'; } }); });

CONCERTS AND FANMEETINGS

×
/* main event listener that waits for the page to load before running the script */ document.addEventListener('DOMContentLoaded', () => { /* select the main elements from the HTML */ const slider = document.querySelector('.gallery5-slider'); const prevButton = document.querySelector('.gallery5-prev-button'); const nextButton = document.querySelector('.gallery5-next-button'); const youtubeItems = document.querySelectorAll('.gallery5-youtube-video'); const videoModal = document.getElementById('video-modal'); const videoFrame = document.getElementById('video-frame'); const closeButton = document.querySelector('.close-button'); /* keeps track of the current position in the carousel */ let currentIndex = 0; /* next Button Functionality */ nextButton.addEventListener('click', () => { const allItems = document.querySelectorAll('.gallery5-slider > *'); const itemWidth = allItems[0].offsetWidth + parseInt(window.getComputedStyle(allItems[0]).marginRight) * 2; const visibleItemsCount = Math.round(slider.offsetWidth / itemWidth); currentIndex = (currentIndex + 1); /* move to the next item */ const maxIndex = allItems.length - visibleItemsCount; /* loop back to the beginning */ if (currentIndex > maxIndex) {currentIndex = 0;} slider.style.transform = `translateX(-${currentIndex * itemWidth}px)`; /* show the next item */ }); /* previous Button Functionality */ prevButton.addEventListener('click', () => { const allItems = document.querySelectorAll('.gallery5-slider > *'); const itemWidth = allItems[0].offsetWidth + parseInt(window.getComputedStyle(allItems[0]).marginRight) * 2; const visibleItemsCount = Math.round(slider.offsetWidth / itemWidth); currentIndex = (currentIndex - 1); /* move to the previous item */ const maxIndex = allItems.length - visibleItemsCount; /* loop back to the end */ if (currentIndex < 0) {currentIndex = maxIndex;} slider.style.transform = `translateX(-${currentIndex * itemWidth}px)`; /* show the previous item */ }); /* youtube video modal */ youtubeItems.forEach(item => { item.addEventListener('click', () => { const videoUrl = item.querySelector('img').getAttribute('data-video-url'); if (videoUrl) { const videoId = videoUrl.split('v=')[1] || videoUrl.split('/').pop(); videoFrame.src = `https://www.youtube.com/embed/${videoId}?autoplay=1`; videoModal.style.display = 'block'; } }); }); closeButton.addEventListener('click', () => { /* closes the modal when close button is clicked */ videoFrame.src = ''; videoModal.style.display = 'none'; }); videoModal.addEventListener('click', (e) => { /* closes the modal when anywhere outside the video is clicked */ if (e.target === videoModal) { videoFrame.src = ''; videoModal.style.display = 'none'; } }); });

DRAMAS AND FILMS

JAY - Solo Leveling on ICE
JU-NE - No Mercy
JU-NE - Want to Work Overtime
JU-NE - Marry You
JU-NE - Again 1997
JU-NE - Twinkling Watermelon
JU-NE - True to Love
JAY - Dracula
CHAN - My Chilling Roommate
CHAN - My Chilling Roommate (Film)
JAY - On Air Spinoff
CHAN - The Heirs
CHAN - Gabi
CHAN - No Limit
CHAN - The Slingshot
CHAN - Cain and Abel
CHAN - Boys Over Flowers
CHAN - Lost and Found
CHAN - The Great King, Sejong
×
/* main event listener that waits for the page to load before running the script */ document.addEventListener('DOMContentLoaded', () => { /* select the main elements from the HTML */ const slider = document.querySelector('.gallery6-slider'); const prevButton = document.querySelector('.gallery6-prev-button'); const nextButton = document.querySelector('.gallery6-next-button'); const youtubeItems = document.querySelectorAll('.gallery6-youtube-video'); const videoModal = document.getElementById('video-modal'); const videoFrame = document.getElementById('video-frame'); const closeButton = document.querySelector('.close-button'); /* keeps track of the current position in the carousel */ let currentIndex = 0; /* next Button Functionality */ nextButton.addEventListener('click', () => { const allItems = document.querySelectorAll('.gallery6-slider > *'); const itemWidth = allItems[0].offsetWidth + parseInt(window.getComputedStyle(allItems[0]).marginRight) * 2; const visibleItemsCount = Math.round(slider.offsetWidth / itemWidth); currentIndex = (currentIndex + 1); /* move to the next item */ const maxIndex = allItems.length - visibleItemsCount; /* loop back to the beginning */ if (currentIndex > maxIndex) {currentIndex = 0;} slider.style.transform = `translateX(-${currentIndex * itemWidth}px)`; /* show the next item */ }); /* previous Button Functionality */ prevButton.addEventListener('click', () => { const allItems = document.querySelectorAll('.gallery6-slider > *'); const itemWidth = allItems[0].offsetWidth + parseInt(window.getComputedStyle(allItems[0]).marginRight) * 2; const visibleItemsCount = Math.round(slider.offsetWidth / itemWidth); currentIndex = (currentIndex - 1); /* move to the previous item */ const maxIndex = allItems.length - visibleItemsCount; /* loop back to the end */ if (currentIndex < 0) {currentIndex = maxIndex;} slider.style.transform = `translateX(-${currentIndex * itemWidth}px)`; /* show the previous item */ }); /* youtube video modal */ youtubeItems.forEach(item => { item.addEventListener('click', () => { const videoUrl = item.querySelector('img').getAttribute('data-video-url'); if (videoUrl) { const videoId = videoUrl.split('v=')[1] || videoUrl.split('/').pop(); videoFrame.src = `https://www.youtube.com/embed/${videoId}?autoplay=1`; videoModal.style.display = 'block'; } }); }); closeButton.addEventListener('click', () => { /* closes the modal when close button is clicked */ videoFrame.src = ''; videoModal.style.display = 'none'; }); videoModal.addEventListener('click', (e) => { /* closes the modal when anywhere outside the video is clicked */ if (e.target === videoModal) { videoFrame.src = ''; videoModal.style.display = 'none'; } }); });

profile

iKON / 아이콘

The K in iKON stands for Korea - iCON of Korea

Debut : 2015 October 01 September 15Fandom : iKONICFandom Colour : Konfire (Orange-Red)Lightstick : Konbat

Labels

  • YG Entertainment, trainees

  • YG Entertainment (2015 - 2022 December 30)

  • 143 Entertainment (2023 January 01 - Present)

Debut Date

YG Entertainment officially set iKON’s debut date as October 01, the release date of the first half of Welcome Back album. This was also the date they mentioned as their debut date during their first concert on October 03. However, on December 24, during a live, out of nowhere, this happened:

B.I : We released My Type on September 15th, right? … At our concert, we designated our official debut day as October 01. I’ll change the date.Bobby : With whose permission?B.I : I’ll change the date to September 15. As My Type was the first song we released under the name of iKON and since today is the day when our full album comes out (December 24 is also 100 days after September 15), all the meanings make some sense. Instead of October 01, we are here to correct our official debut day to September 15 in the presence of iKONIC members.Junhoe : … We are destined to designate September 15 as our official debut date.B.I : Applause! /claps from everybody/ No objections, right?Jinhwan : What about you, everyone? The comments said, “Yes”.B.I : Everyone agreed with it.

So, basically, as iKON and iKONICS always do, we listen to our leader, Kim Hanbin. 2015 September 15 is iKON’s debut date.


awards / recognitions

Pre-debut

  • Show Me the Money 3

  • B.I : “Be I” : first single from SMTM to top the charts

  • Bobby : winner of Show Me The Money 3 - first idol to win SMTM and is dubbed "King of the Youth"

  • B.I and Bobby broke the idol-rapper stereotype

  • 2014 Mnet Asian Music Awards

  • Bobby : first idol trainee to open MAMA

  • B.I and Bobby : first idol trainees to perform at MAMA

Rookie Idols

  • Rookie Grand Slam : second to achieve Rookie Grand Slam (winning Rookie of the Year in Korea’s five major award shows)

  • Monster Rookies : first rookie group to sweep rookie awards in Korean, Japan and China

  • one of the fastest groups to receive a music show win for a song - 5 days before official debut (only 12 days after release and without promotion)

  • first group to perform their debut showcase/concert in Olympic Gymnastics Arena, one of Korea’s largest venue - sold out in 13 minutes

  • fastest group to perform at a Japan dome only one year and nine months after debut

2015

  • 7th MelOn Music Awards : Best New Artist

  • 2015 Mnet Asian Music Awards : Best New Male Artist

  • 2015 Netease Attitude Awards : Best Group

  • “My Type” - warm-up (pre-debut) single

  • one of the fastest groups to receive a music show win for a song, 5 days before official debut (only 12 days after release and without promotion)

  • 5-year record for most roofhits on MelOn with 18 roofhits

  • first kpop debut song on Billboard World Charts

  • digitally sold 1.6M copies and easily became one of 2015’s best-selling song despite a September release

  • first group in the new generation to achieve a Certified All-Kill with “My Type”

  • first group to have three songs get multiple MelOn Popularity Awards in less than a year with “My Type” “Apology” and “#WYD”

2016

  • 6th GAON Chart Music Awards

  • New Artist of the Year

  • “My Type” : Song of the Year - September

  • 8th MelOn Music Awards : QQ Asia Artist Awards

  • 25th Seoul Music Awards : New Artist Award

  • 30th Golden Disc Awards : New Artist Award

  • 58th Japan Record Awards

  • Best New Artist Award

  • New Artist Award

  • 2016 China Music Awards : Asian Most Popular Korean Group

  • 2016 QQ Music Awards

  • Best New Force Group

  • Welcome Back : Album of the Year (media-recommended)

  • most wins on “Heroes of Remix”

  • Yunhyeong : first ambassador for NIVEA Korea

2017

  • 31st Japan Gold Disc Awards

  • New Artist of the Year

  • The Best 3 New Artists (Asia)

  • “Bling Bling” : 7th Korean song to chart on QQ Music Chart

2018

  • 1st Genie Music Awards : “Love Scenario” : Rap / Hip Hop Music Award

  • 3rd Asia Artist Awards

  • Artist of the Year - Music

  • Best Musician

  • 10th MelOn Music Awards

  • Top 10 Artists

  • “Love Scenario” : Song of the Year

  • B.I : Songwriter of the Year - first male idol to win this award

  • 2018 Arena Homme+’s A-awards : Musician (Contemporary)

  • 2018 Mnet Asian Music Awards : Best Vocal Performance Group

  • “Love Scenario”

  • loved by people of all ages : iKON become known as Kids’ President

  • most hourly Perfect All-Kill (204), not just in kpop but across different genres - second-most hourly PAK before reform

  • first song to be certified Platinum in Streaming in GAON for surpassing 2.5M downloads

  • only song from new kpop boy groups to make it into the Top 10 Longest-Charting Song since 2007

  • B.I : top earner in terms of royalties

  • Chanwoo : Fortnite X Samsung releases an exclusive Fortnite skin inspired by Chanwoo. The iKONIK emote is inspired by Love Scenario.

2019

  • 1st The Fact Music Awards

  • Artist of the Year

  • “Love Scenario” : Best Song

  • 8th GAON Chart Music Awards

  • Record Production of the Year - first idol group to win this award

  • “Love Scenario” : Long Run Song of the Year

  • “Love Scenario” : Song of the Year - January

  • 28th Seoul Music Awards

  • Bonsang Award

  • “Love Scenario” : Record of the Year in Digital Release

  • 33rd Genie Music Awards

  • “Love Scenario” : Digital Daesang

  • “Love Scenario” : Digital Bonsang

  • 2019 V Live Awards : Global Top 12

  • becomes full member of the Korea Music Copyright Association (KOMCA)

2021

  • 30th Seoul Music Awards : Legend Rookie Prize

2022

  • Donghyuk : UL:KIN X DK collab. He also made his NYFW runway debut.

  • Yunhyeong : Hanam City public relations ambassador

2023

  • Supersound Festival: Best Male Group of the Year

2024

  • “RETURN” album: labeled as 명반 [Masterpiece] on Melon



former member


+where to start

FANMEETINGS and CONCERTS are the way to go when it comes to iKON. For some songs, you might actually end up liking the live versions better than the recorded ones. Visit the MASTERLIST page to watch their fanmeetings and live concerts.

  • Do NOT miss their b-sides and remixes or you're seriously missing out!
  • We highly recommend to read the English (or any language you understand) translation of each song at least once.
  • Killing Verse! Watch it!

But here's a general list of personal faves by playlist-ish. To be fair, ALL their songs (ALL because they do not have any bad song) are bangers but here ya go:

TRILOGY + 1 : Love Scenario / Killing Me / Goodbye Road / I'm OK

LEGENwaitforitDARY : Climax / Rhythm Ta (Rock Version) / Just Go (Japanese Live Version)

OLDIES BUT GOODIES : SINOSIJAK / M.U.P / Welcome Back

PARTY PEOPLE : B-DAY / Bling Bling / Ah Yeah / U / Ttanttara

ROADTRIP JAMS : I Miss You So Bad / Freedom / Today

SHOWER SESSIONS : Love Me / Only You / Adore You

iKON AND CHILL : Beautiful / Best Friend / Flower / Gold / Driving Slowly / All the Way Here

GUILTY PLEASURE : Worldwide / Dumb & Dumber / Jerk

CRIES IN HEARTBREAK : Hug Me / Apology / Hug Me / Just for You / Name

THIS IS REMIX : Peng You (Friends) / Kiss Goodbye / Niliria + All of Me + Siri Says

UNDERDOGS : Don't Let Me Know / All the World / Holding On

So~ uhm~ basically, you can listen to any iKON whatever the time and wherever the place.


studio albums

  • welcome back / 2015.10.01 / debut album

  • return / 2018.01.25

  • new kids / 2019.02.27 / japanese

  • flashback [+ i decide] / 2022.07.07 / japanese

  • take off / 2023.05.04

extended plays and single albums

  • my type / 2015.09.15 / warm-up single for the debut half-album

  • #wyd / 2016.05.30 / digital single

  • new kids: begin / 2017.05.22

  • rubber band / 2018.03.05 / digital single

  • new kids: continue / 2018.08.02

  • new kids: the final / 2018.10.01

  • i decide / 2020.02.06

  • why why why / 2021.03.03 / digital single

  • flashback / 2022.05.03

  • panorama / 2023.08.23 / digital single

compilation albums

  • iKON single collection / 2016.12.28 / japanese

  • the new kids / 2019.01.07

live albums

  • 2016 iKON - iKoncert showtime tour in seoul live cd / 2016.05.04


features / credits / others

2009

2014

  • Be I / B.I / Lyrics and Composition

  • Go / Bobby / Lyrics

  • L4L (Lookin’ for Love) / Bobby ft Dok2 and The Quiett / Lyrics

  • YGGR#hiphop / Bobby / Lyrics

  • Bounce / Bobby / Lyrics and Composition

  • Born Hater / Epik High ft Beenzino, Verbal Jint, B.I, Mino, Bobby / Lyrics (B.I, Bobby) and Composition (B.I)

  • Come Here / Masta Wu ft Dok2 and Bobby / Lyrics

  • I’m Different / Hi Suhyun ft Bobby / Lyrics

  • Empty / Winner / Lyrics (B.I, Bobby) and Composition (B.I)

2016

2017

2018

  • Mollado / Seungri ft B.I / Lyrics and Composition

  • Rise (Remix) / Mako, The World Alive & The Glitch Mob ft Bobby

  • FRIEND / Curious Husband’s Get Away / Lyrics (B.I, Bobby), Composition (B.I, Bobby), and Production (B.I, Bobby)

2019

  • Super Asia / TPA ft VaVa and Bobby / Lyrics and Composition

  • No One / Lee Hi ft B.I / Lyrics

  • 1,2 / Lee Hi ft Choi Hyunsuk / Lyrics (B.I) and Composition (B.I)

2020

2021

  • Moss / Mudd the Student ft Mino and Bobby / Lyrics

  • Language / Mino ft Bobby / Lyrics

2022

2023

2024

  • True Love / Bobby and Ovan ft Jung Sunhye of Young Posse / Lyrics, Composition and Production

  • The Notorious / Huckleberry P ft Bobby and Damini / Lyrics

  • RUSH / Junny ft Bobby / Lyrics and Composition

  • Run It Up / Yungin, BM, Bobby / Lyrics

2025


+where to start

Hi :) Please don’t get overwhelmed - it’s still not enough, honestly. For new fans or people who are just starting to get to know iKON, here’s a quick list of what you can start with. All links can be found above.

  • Killing Verse : Short preview of iKON discography from 2018 to 2022.
  • iKON FAN MEETING 2019 : Fun and entertaining from beginning to end.
  • iKON'S TYPE : One Summer Night : Can a show be chill and chaotic at the same time? Yes.
  • I Log U 2 : This show is a mess and it's so loud. iKON always does iKON.
  • iKON What are you going to make today : This live just really made me happy, ok?

When you think you're ready for these, go ahead.

  • Video Star : Chaotic!
  • Weekly Idol : All of their Weekly Idol episodes are hilarious.
  • iKON TV : iKON’s self-produced variety/reality show. The first few episodes are good intros to what later episodes will be about. Each iKONs had the chance to be the main PD of their own episode(s) with their own concepts. You really get to see their personalities in this series.
  • iKON Idol School Trip : You see them being cute (but really awkward) with girls. What’s better than that? It’s a fun show with guaranteed laughter. (Not-so)-manly iKON with "ladies first" attitude.
  • Idol Star Athletics Championship (ISAC) : You won't regret watching this!
  • iKON’s Season’s Greeting : The iKONs already have a few Season’s Greeting seasons out. You see them just hanging out, really.

When you’re all set and you're ready to see where iKON (previously Team B) started, it’s time to watch their pre-debut survival shows. Watching these will let you see how much they matured as people and as artists. You’ll also understand why and how they became GRAND SLAM ROOKIES in three countries (South Korea, Japan and China) when they debuted.

  • MIX AND MATCH : iKON formation. You already know who’s in the group but make sure to still have tissues nearby. WARNING: You might have some leftover OT9 feelings later.
  • WIN : WHO IS NEXT : It’s a different kind of heartbreak! Most fans will disagree but watch it after you watch MIX AND MATCH.

and then you can go crazy with the rest of the contents! The FANMEETINGS and CONCERTS are always a party!