'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

List of Pakistanis

Pakistan is the sixth most populous nation in the World. Below is a list of some people who in some way relate to the country. See Category:Pakistani people for an alphabetical list of Pakistanis with categories.

Heads of State or Government

Civil / Democratically Elected Administrators

  • Muhammad Ali Jinnah, "Quaid-e-Azam" or "Great Leader." First Governor General of Pakistan, and the main founder of Pakistan.
  • Liaquat Ali Khan
  • Khawaja Nazimuddin
  • Ghulam Muhammad
  • Iskander Mirza
  • Chaudhury Mohammad Ali
  • Chaudhry Fazal Ellahi
  • Muhammad Rafiq Tarar
  • Hussein Shaheed Suhrawardy
  • Muhammad Ali Bogra
  • Ibrahim Ismail Chundrigar
  • Feroz Khan Noon
  • Zulfikar Ali Bhutto
  • Muhammad Khan Junejo
  • Ghulam Ishaq Khan
  • Benazir Bhutto
  • Farooq Leghari
  • Ghulam Mustafa Jatoi
  • Balakh Sher Mazari
  • Moeen Qureshi
  • Malik Meraj Khalid
  • Zafarullah Khan Jamali
  • Chaudhry Shujaat Hussain
  • Shaukat Aziz
  • Wasim Sajjad
  • Mohammad Mian Soomro
  • Asif Ali Zardari
  • Yousaf Raza Gillani
  • Raja Pervez Ashraf
  • Nawaz Sharif
  • Mamnoon Hussain
  • Military / Non-Democratically Elected Administrators

    Pakistanis

    Pakistanis (Urdu: پاكِستانى قوم; Pakistani Qaum) are the people who are citizens of the modern State of Pakistan and their descendants. Pakistan is a multi-ethnic and multilingual state: the majority of its people belong linguistically to the Indo-Aryan group, and there are significant minorities belonging to the Iranic and Dard subgroups among others. As of 2011, the estimated population of Pakistan was over 199 million making it the world's sixth most-populous country.

    Ethnic sub-groups

    Pakistan has one of the world's fastest growing populations. As the country is located in South Asia, Pakistani people are a mixture of various ethnic groups. Several ethnic groups, invading armies and the migrations to the region by people passing through on their way to and from Indus have left their imprint on the population.

    Pakistani people belong predominantly to seven main ethno-linguistic groups: Punjabis, Sindhis, Seraikis, Pashtuns, Mohajirs, Balochs, and Kashmiris, with substantial numbers of Brahuis, Hindkowans, Shins, Burushos, Wakhis, Baltis, Chitralis and other small, minority ethnic groups in the remote north of the country.

    Podcasts:

    • Why Do Pakistanis Like Germany So Much?! 🇵🇰 #travel #pakistan #germany

      I met a bunch of friendly Pakistanis in Rawalpindi near the capital Islamabad. They gave me a free natural toothbrush, a so called 'Miswak'. We had a funny chit chat and I found out that some Pakistanis or even many, as they said, love Germany.

      published: 05 Jan 2025
    • Would you wear this to Pakistan?

      Why is this nice man trying to get me killed? He's trying to sell me Indian Army merchandise and Indian flags before I cross the Attari-Wagah border to Pakistan. 👇👇👇👇👇👇👇👇👇👇 1) SUBSCRIBE! ✔ Click https://www.youtube.com/c/KarlRock/?sub_confirmation=1 Then smash the BELL ICON so you don't miss a 🔴live stream or video. 2) SUPPORT MY CONTENT & GET SPECIAL BENEFITS 🙏🏻❤️ Press the blue JOIN button or https://www.youtube.com/c/KarlRock/join. 3) WANT TO TRAVEL TO INDIA? Read my quick-start safety guide at https://blog.karlrock.com/india-survival-guide/. 4) WANT TO LEARN HINDI हिन्दी? Learn Hindi Faster Than I Did! is free at https://blog.karlrock.com/how-to-learn-hindi-faster-than-i-did/. 5) LET'S CONNECT 👋🏻 https://www.instagram.com/iamkarlrock/ https://www.facebook.com/iamkarlrock #funny ...

      published: 02 Aug 2024
    • Pakistani man who looks like Trump finds local fame

      You’ve never seen them in the same room… Just saying 👀 This is Salem Bagga, the 53-year-old who looks just like Donald Trump. Locals say that ‘When he sings to sell kheer (pudding), we come down to him. We feel as if Trump has come here to sell kheer and we feel pride that we are eating kheer with him (Trump). #shorts #news #trump #pakistani #lookalike #usa #president Daily Mail Website: https://www.dailymail.co.uk Daily Mail Facebook: https://facebook.com/dailymail Daily Mail IG: https://instagram.com/dailymail Daily Mail Snap: https://snapchat.com/discover/Daily-Ma... Daily Mail Twitter: https://twitter.com/MailOnline Daily Mail Pinterest: https://pinterest.co.uk/dailymail Get the free Daily Mail mobile app: https://dailymail.co.uk/mobile

      published: 16 Jan 2025
    • Journey Through Pakistan - Travel Documentary

      Few countries in the world offer so much diversity as Pakistan, a surprising and eye-opening travel destination. From spectacular mountain scenery and intriguing historic landmarks to vibrant cities and charming villages, full of welcoming people. In this video, I take you all the way back to 2010, when I traveled through Pakistan, from North to South. This is, in a way, an historical journey, as many things have changed. But I still hope this video gives you some travel inspiration, or at least provides a glimpse into this incredible place. From the challenging Karakoram Highway to the bustling streets of Lahore and Karachi. From the rugged mountain landscapes in the Indus Valley to the organized streets of capital Islamabad. And from the friendly villages in the Hunza Valley to the f...

      published: 30 Aug 2024
    • #145 How Pakistani 🇵🇰 Army Treats An Indian 🇮🇳 || #shorts #ytshorts #indianinpakistan #pakistan

      published: 04 Dec 2023
    • What if Pakistan tried to form Greater Pakistan?

      What do you think of this scenario? #mappermaniac #map #mapper #hypothetical #whatif #asia #pakistan #india #greaterpakistan #china

      published: 05 Mar 2025
    • Pakistan Zindabad 🇵🇰♥️#shorts #shortvideo #pakistan #shaheerjutt

      published: 14 Aug 2024
    • Scam Shops in Pakistan & India - Don't Be Fooled!

      While travelling in India & Pakistan you'll find shops that have straight-up copied a famous shop's name, and then, opened their store next-door to the original! In this video, you'll see the original Grato Jalebi sweet store in Rawalpindi and there's a big queue because locals know it's legit. But just a few metres down the road are 3 copies with the same name. Karim's in Delhi also has the same problem. There are many counterfeit Karim's restaurants. These fake shops make enough money to stay open by simply fooling travellers. So don't be fooled, check online reviews to verify locations. Has this ever happened to you? The original Grato Jalebi, Rawalpindi https://goo.gl/maps/yakvrxPe1TVGayPQA. The original Karim's, Delhi https://goo.gl/maps/3GuKhR8g2jzfqEJA6. #Pakistan #India #Sc...

      published: 29 Jun 2022
    • Indian Biryani vs Pakistani Biryani

      published: 09 Jun 2024
    • I said JAI HIND in PAKISTAN 🤣

      A Pakistani in Lahore started trying to troll India, but I got the last laugh 😁 Jai Hind 🇮🇳. For those who don't know, Jai Hind (जय हिन्द) means "Long live India." It's a patriotic and victorious saying in Hindi. Pakistanis have their own saying too: Pakistan Zindabad (پاکستان زِنده باد‎) which means "Long live Pakistan." Taken from "Inside Lahore's Burnt Down Electronics Market" https://youtu.be/fmMUnoFAfuc What is "The tea is fantastic?" For my foreign audience, I'll explain the "the tea is fantastic" reference for you. I too had no idea until a few months back. Wing Commander Abhinandan Varthaman VrC is an Indian Air Force fighter pilot who, during the 2019 India–Pakistan standoff, was held captive in Pakistan for 60 hours after his aircraft was shot down in an aerial dogfight. Du...

      published: 07 May 2021
    Why Do Pakistanis Like Germany So Much?! 🇵🇰 #travel #pakistan #germany
    0:33

    Why Do Pakistanis Like Germany So Much?! 🇵🇰 #travel #pakistan #germany

    • Order:
    • Duration: 0:33
    • Uploaded Date: 05 Jan 2025
    • views: 5738556
    I met a bunch of friendly Pakistanis in Rawalpindi near the capital Islamabad. They gave me a free natural toothbrush, a so called 'Miswak'. We had a funny chit chat and I found out that some Pakistanis or even many, as they said, love Germany.
    https://wn.com/Why_Do_Pakistanis_Like_Germany_So_Much_🇵🇰_Travel_Pakistan_Germany
    Would you wear this to Pakistan?
    0:15

    Would you wear this to Pakistan?

    • Order:
    • Duration: 0:15
    • Uploaded Date: 02 Aug 2024
    • views: 4549335
    Why is this nice man trying to get me killed? He's trying to sell me Indian Army merchandise and Indian flags before I cross the Attari-Wagah border to Pakistan. 👇👇👇👇👇👇👇👇👇👇 1) SUBSCRIBE! ✔ Click https://www.youtube.com/c/KarlRock/?sub_confirmation=1 Then smash the BELL ICON so you don't miss a 🔴live stream or video. 2) SUPPORT MY CONTENT & GET SPECIAL BENEFITS 🙏🏻❤️ Press the blue JOIN button or https://www.youtube.com/c/KarlRock/join. 3) WANT TO TRAVEL TO INDIA? Read my quick-start safety guide at https://blog.karlrock.com/india-survival-guide/. 4) WANT TO LEARN HINDI हिन्दी? Learn Hindi Faster Than I Did! is free at https://blog.karlrock.com/how-to-learn-hindi-faster-than-i-did/. 5) LET'S CONNECT 👋🏻 https://www.instagram.com/iamkarlrock/ https://www.facebook.com/iamkarlrock #funny #india #pakistan #border #wagah #punjab #indianarmy #army
    https://wn.com/Would_You_Wear_This_To_Pakistan
    Pakistani man who looks like Trump finds local fame
    0:12

    Pakistani man who looks like Trump finds local fame

    • Order:
    • Duration: 0:12
    • Uploaded Date: 16 Jan 2025
    • views: 2078690
    You’ve never seen them in the same room… Just saying 👀 This is Salem Bagga, the 53-year-old who looks just like Donald Trump. Locals say that ‘When he sings to sell kheer (pudding), we come down to him. We feel as if Trump has come here to sell kheer and we feel pride that we are eating kheer with him (Trump). #shorts #news #trump #pakistani #lookalike #usa #president Daily Mail Website: https://www.dailymail.co.uk Daily Mail Facebook: https://facebook.com/dailymail Daily Mail IG: https://instagram.com/dailymail Daily Mail Snap: https://snapchat.com/discover/Daily-Ma... Daily Mail Twitter: https://twitter.com/MailOnline Daily Mail Pinterest: https://pinterest.co.uk/dailymail Get the free Daily Mail mobile app: https://dailymail.co.uk/mobile
    https://wn.com/Pakistani_Man_Who_Looks_Like_Trump_Finds_Local_Fame
    Journey Through Pakistan - Travel Documentary
    22:26

    Journey Through Pakistan - Travel Documentary

    • Order:
    • Duration: 22:26
    • Uploaded Date: 30 Aug 2024
    • views: 875226
    Few countries in the world offer so much diversity as Pakistan, a surprising and eye-opening travel destination. From spectacular mountain scenery and intriguing historic landmarks to vibrant cities and charming villages, full of welcoming people. In this video, I take you all the way back to 2010, when I traveled through Pakistan, from North to South. This is, in a way, an historical journey, as many things have changed. But I still hope this video gives you some travel inspiration, or at least provides a glimpse into this incredible place. From the challenging Karakoram Highway to the bustling streets of Lahore and Karachi. From the rugged mountain landscapes in the Indus Valley to the organized streets of capital Islamabad. And from the friendly villages in the Hunza Valley to the fun and entertaining Wagah border ceremony. For other travel documentaries click here: Journey through Tunisia: https://youtu.be/JrBObQvJuoI Journey through Saudi Arabia: https://youtu.be/_FlnD19-Y5s Journey through Ethiopia: https://youtu.be/2xW9mTStyhM Journey through Israel: https://youtu.be/s3LZ1xXYTlI Journey through Palestine: https://youtu.be/L-Fzan-VWO0 Napoli and Beyond: https://youtu.be/k_oidvMIs08 Journey through Sicily: https://youtu.be/oAmyYKtzc9w China From Above: https://youtu.be/vTGR2tUt0m0 Yugoslavia From Above: https://youtu.be/5CV4uRsNaYg Top 10 Places in China: https://youtu.be/hbgo66q1s9o Top 10 Places in India: https://youtu.be/HWGzQlrJOqM Top 10 Places in Central Asia: https://youtu.be/ZC8OkVxbxh4 Top 10 Places in Iran: https://youtu.be/0v7cOe1FSUE Instagram: https://www.instagram.com/stefhoffer/ Facebook: https://www.facebook.com/stefhoffer/ Copyright of all footage: Hoffer Media Here’s a brief overview of the content in this video: In the first part of our journey we traverse the mighty Karakoram Highway, one of the most impressive engineering feats in human history. Starting in Kashgar, China, the highway makes its way South towards Islamabad, among challenging terrain and breathtaking mountain landscapes. After passing Karakul lake, the Pakistan border, and Attabad lake, we reach the Hunza Vally, one of Pakistan’s most beautiful regions. Here we explore friendly villages and get a sense of rural life. After a day trip to the imposing Hoper glacier, we continue our way to Skardu, to enjoy more amazing natural scenery. We take a plane to Islambad, with views of the Himalayan ranges, and arrive in the nation’s capital. While there are few specific points of interest here, it’s interesting to wander through the organized streets of this planned city. A highlight is the Shah Faisal Mosque, one of the largest mosques on the planet. Not far from Islamabad is Rawalpindi, which perhaps provides a much better introduction into urban life in Pakistan. While the bustling streets and narrow alleys are a joy to explore, my favorite place to visit here was an area with truck workshops, where people decorate (and maintain) trucks and other vehicles. Our next destination is Lahore, considered to be the cultural capital of the country. We visit some incredible landmarks, such as the Lahore fort and Badshahi mosque, and enjoy the vibrant streets, meet friendly people, and taste some of the delicious food. A few kilometres from Lahore is Wagah, venue for a spectacular border ceremony with India, that is both theatrical and serious. We finish our journey in Karachi, the largest city and economic center of Pakistan. Timestamps / video chapters: 0:00 Introduction 1:33 Karakoram Highway 5:09 Hunza Valley 7:06 Skardu 9:06 Islamabad 10:38 Rawalpindi 13:42 Lahore 17:35 Wagah 19:27 Karachi 21:11 End
    https://wn.com/Journey_Through_Pakistan_Travel_Documentary
    #145 How Pakistani 🇵🇰 Army Treats An Indian 🇮🇳 || #shorts #ytshorts #indianinpakistan #pakistan
    1:00

    #145 How Pakistani 🇵🇰 Army Treats An Indian 🇮🇳 || #shorts #ytshorts #indianinpakistan #pakistan

    • Order:
    • Duration: 1:00
    • Uploaded Date: 04 Dec 2023
    • views: 20280447
    https://wn.com/145_How_Pakistani_🇵🇰_Army_Treats_An_Indian_🇮🇳_||_Shorts_Ytshorts_Indianinpakistan_Pakistan
    What if Pakistan tried to form Greater Pakistan?
    1:00

    What if Pakistan tried to form Greater Pakistan?

    • Order:
    • Duration: 1:00
    • Uploaded Date: 05 Mar 2025
    • views: 170428
    What do you think of this scenario? #mappermaniac #map #mapper #hypothetical #whatif #asia #pakistan #india #greaterpakistan #china
    https://wn.com/What_If_Pakistan_Tried_To_Form_Greater_Pakistan
    Pakistan Zindabad 🇵🇰♥️#shorts #shortvideo #pakistan #shaheerjutt
    0:14

    Pakistan Zindabad 🇵🇰♥️#shorts #shortvideo #pakistan #shaheerjutt

    • Order:
    • Duration: 0:14
    • Uploaded Date: 14 Aug 2024
    • views: 28781864
    https://wn.com/Pakistan_Zindabad_🇵🇰♥️_Shorts_Shortvideo_Pakistan_Shaheerjutt
    Scam Shops in Pakistan & India - Don't Be Fooled!
    0:43

    Scam Shops in Pakistan & India - Don't Be Fooled!

    • Order:
    • Duration: 0:43
    • Uploaded Date: 29 Jun 2022
    • views: 18421773
    While travelling in India & Pakistan you'll find shops that have straight-up copied a famous shop's name, and then, opened their store next-door to the original! In this video, you'll see the original Grato Jalebi sweet store in Rawalpindi and there's a big queue because locals know it's legit. But just a few metres down the road are 3 copies with the same name. Karim's in Delhi also has the same problem. There are many counterfeit Karim's restaurants. These fake shops make enough money to stay open by simply fooling travellers. So don't be fooled, check online reviews to verify locations. Has this ever happened to you? The original Grato Jalebi, Rawalpindi https://goo.gl/maps/yakvrxPe1TVGayPQA. The original Karim's, Delhi https://goo.gl/maps/3GuKhR8g2jzfqEJA6. #Pakistan #India #Scams #Scammers #TravelSafety #Rawalpindi #Delhi #Karims #Food #Scam #Counterfeit #Fake #Jalebi
    https://wn.com/Scam_Shops_In_Pakistan_India_Don't_Be_Fooled
    Indian Biryani vs Pakistani Biryani
    1:01

    Indian Biryani vs Pakistani Biryani

    • Order:
    • Duration: 1:01
    • Uploaded Date: 09 Jun 2024
    • views: 17465934
    https://wn.com/Indian_Biryani_Vs_Pakistani_Biryani
    I said JAI HIND in PAKISTAN 🤣
    0:30

    I said JAI HIND in PAKISTAN 🤣

    • Order:
    • Duration: 0:30
    • Uploaded Date: 07 May 2021
    • views: 46784536
    A Pakistani in Lahore started trying to troll India, but I got the last laugh 😁 Jai Hind 🇮🇳. For those who don't know, Jai Hind (जय हिन्द) means "Long live India." It's a patriotic and victorious saying in Hindi. Pakistanis have their own saying too: Pakistan Zindabad (پاکستان زِنده باد‎) which means "Long live Pakistan." Taken from "Inside Lahore's Burnt Down Electronics Market" https://youtu.be/fmMUnoFAfuc What is "The tea is fantastic?" For my foreign audience, I'll explain the "the tea is fantastic" reference for you. I too had no idea until a few months back. Wing Commander Abhinandan Varthaman VrC is an Indian Air Force fighter pilot who, during the 2019 India–Pakistan standoff, was held captive in Pakistan for 60 hours after his aircraft was shot down in an aerial dogfight. During this time he was filmed by the Pakistan Army complementing the tea he was drinking. That video was then released to the media. He says in the video, "The tea is fantastic." That video is available here https://youtu.be/vz9z_LfwO58. So that's where this reference comes from. It's now used to troll Indians online mainly. So hence my replies, and in the end, I just gave him a Jai Hind "Long Live India." 👇👇👇👇👇👇👇👇👇👇 1) SUBSCRIBE! ✔ Click https://www.youtube.com/c/KarlRock/?sub_confirmation=1 Then smash the BELL ICON so you don't miss a 🔴live stream or video. 2) SUPPORT THE CONTENT I CREATE & GET SPECIAL BENEFITS 🙏🏻❤️ Press the blue JOIN button or https://www.youtube.com/channel/UCtfXgNnA-QcxjHJjk5wXLFg/join. 3) WANT TO LEARN HINDI हिन्दी? Learn Hindi Faster Than I Did! eBook at https://karlrock.com. 4) LET'S CONNECT 👋🏻 https://www.instagram.com/iamkarlrock/ https://www.facebook.com/iamkarlrock https://twitter.com/iamkarlrock #Shorts #India #Pakistan #JaiHind #जयहिन्द #जयहिंद #PakistanTravel #Indian #Meme #Troll #Tea #Chai #Punjab #KarlRock #desimemes #indianmemes #thuglife
    https://wn.com/I_Said_Jai_Hind_In_Pakistan_🤣
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • Why Do Pakistanis Like Germany So Much?! 🇵🇰 #travel #pakistan #germany
      0:33
      Why Do Pakistanis Like Germany So Much?! 🇵🇰 #travel #pakistan #germanyremove from playlist
    • Would you wear this to Pakistan?
      0:15
      Would you wear this to Pakistan?remove from playlist
    • Pakistani man who looks like Trump finds local fame
      0:12
      Pakistani man who looks like Trump finds local fameremove from playlist
    • Journey Through Pakistan - Travel Documentary
      22:26
      Journey Through Pakistan - Travel Documentaryremove from playlist
    • What if Pakistan tried to form Greater Pakistan?
      1:00
      What if Pakistan tried to form Greater Pakistan?remove from playlist
    • Scam Shops in Pakistan & India - Don't Be Fooled!
      0:43
      Scam Shops in Pakistan & India - Don't Be Fooled!remove from playlist
    • I said JAI HIND in PAKISTAN 🤣
      0:30
      I said JAI HIND in PAKISTAN 🤣remove from playlist
    PLAYLIST TIME: 0:00 / 27:54

    Why Do Pakistanis Like Germany So Much?! 🇵🇰 #travel #pakistan #germany

    I met a bunch of friendly Pakistanis in Rawalpindi near the capital Islamabad. They gave me a free natural toothbrush, a so called 'Miswak'. We had a funny chit chat and I found out that some Pakistanis or even many, as they said, love Germany.
    0:33
    Why Do Pakistanis Like Germany So Much?! 🇵🇰 #travel #pakistan #germany
    I met a bunch of friendly Pakistanis in Rawalpindi near the capital Islamabad. They gave m...
    published: 05 Jan 2025
    Play in Full Screen
    0:15
    Would you wear this to Pakistan?
    Why is this nice man trying to get me killed? He's trying to sell me Indian Army merchandi...
    published: 02 Aug 2024
    Play in Full Screen
    0:12
    Pakistani man who looks like Trump finds local fame
    You’ve never seen them in the same room… Just saying 👀 This is Salem Bagga, the 53-year-o...
    published: 16 Jan 2025
    Play in Full Screen
    22:26
    Journey Through Pakistan - Travel Documentary
    Few countries in the world offer so much diversity as Pakistan, a surprising and eye-openi...
    published: 30 Aug 2024
    Play in Full Screen
    1:00
    #145 How Pakistani 🇵🇰 Army Treats An Indian 🇮🇳 || #shorts #ytshorts #indianinpakistan #pakistan
    published: 04 Dec 2023
    Play in Full Screen
    1:00
    What if Pakistan tried to form Greater Pakistan?
    What do you think of this scenario? #mappermaniac #map #mapper #hypothetical #whatif #asi...
    published: 05 Mar 2025
    Play in Full Screen
    0:14
    Pakistan Zindabad 🇵🇰♥️#shorts #shortvideo #pakistan #shaheerjutt
    published: 14 Aug 2024
    Play in Full Screen
    0:43
    Scam Shops in Pakistan & India - Don't Be Fooled!
    While travelling in India & Pakistan you'll find shops that have straight-up copied a famo...
    published: 29 Jun 2022
    Play in Full Screen
    1:01
    Indian Biryani vs Pakistani Biryani
    published: 09 Jun 2024
    Play in Full Screen
    0:30
    I said JAI HIND in PAKISTAN 🤣
    A Pakistani in Lahore started trying to troll India, but I got the last laugh 😁 Jai Hind 🇮...
    published: 07 May 2021
    Play in Full Screen

    List of Pakistanis

    Pakistan is the sixth most populous nation in the World. Below is a list of some people who in some way relate to the country. See Category:Pakistani people for an alphabetical list of Pakistanis with categories.

    Heads of State or Government

    Civil / Democratically Elected Administrators

  • Muhammad Ali Jinnah, "Quaid-e-Azam" or "Great Leader." First Governor General of Pakistan, and the main founder of Pakistan.
  • Liaquat Ali Khan
  • Khawaja Nazimuddin
  • Ghulam Muhammad
  • Iskander Mirza
  • Chaudhury Mohammad Ali
  • Chaudhry Fazal Ellahi
  • Muhammad Rafiq Tarar
  • Hussein Shaheed Suhrawardy
  • Muhammad Ali Bogra
  • Ibrahim Ismail Chundrigar
  • Feroz Khan Noon
  • Zulfikar Ali Bhutto
  • Muhammad Khan Junejo
  • Ghulam Ishaq Khan
  • Benazir Bhutto
  • Farooq Leghari
  • Ghulam Mustafa Jatoi
  • Balakh Sher Mazari
  • Moeen Qureshi
  • Malik Meraj Khalid
  • Zafarullah Khan Jamali
  • Chaudhry Shujaat Hussain
  • Shaukat Aziz
  • Wasim Sajjad
  • Mohammad Mian Soomro
  • Asif Ali Zardari
  • Yousaf Raza Gillani
  • Raja Pervez Ashraf
  • Nawaz Sharif
  • Mamnoon Hussain
  • Military / Non-Democratically Elected Administrators

    '); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

    Latest News for: pakistanis

    Edit

    Congress Leader Ajay Rai's Rafale Mockery Draws Pakistani Media's Attention, BJP Backlash

    News18 05 May 2025
    Congress leader Ajay Rai's remark drew massive criticism. BJP leader CR Kesavan said that Congress leaders are deliberately trying to defame and demoralise our brave armed forces ... .
    Edit

    Oman's Interior Minister receives Pakistani counterpart

    Times of Oman 05 May 2025
    Muscat. Sayyid Hamoud Faisal Al Busaidi, Minister of Interior received on Sunday Mohsin Naqvi, Federal Minister of Interior and Narcotics Control of the ....
    Edit

    Pakistani PM postpones visit to M'sia after Kashmir incident

    Malaysia Kini 05 May 2025
    Anwar expresses understanding of the situation, hopes for tension de-escalation. .
    Edit

    Pakistani troops resort to unprovoked firing in 8 forward sectors along LoC in J&K

    The Hindu 05 May 2025
    This marks the 11th consecutive night of Pakistan's unprovoked firing along the LoC ....
    Edit

    Adnan Sami's 'I Knew It' Moment: When Pakistanis Said They Hated Their Army, Wanted To Leave

    News18 05 May 2025
    Adnan Sami, now an Indian citizen, met Pakistani boys in Azerbaijan who wants relinquish their Pakistani identities, blaming the Pakistan Army for destroying their country ... .
    Edit

    'Are We Allowed To Make Indian Actresses Our ': Pakistani Journo's Crass Remarks Spark Backlash

    News18 05 May 2025
    A video of Lucman's remark has gone viral, receiving widespread criticism from both Indian and Pakistani citizens ... .
    Edit

    Woman Removes Pakistani Flag From Stairs At Mumbai Station, Sparks Row | Video

    News18 05 May 2025
    In the video, the burqa-clad woman can be seen scratching the flag pasted on the stairs at the railway station ... .
    Edit

    ‘National Interest’: 4 Reasons Why CRPF Dismissed Jawan Who Married Pakistani Woman | Exclusive

    News18 05 May 2025
    CRPF jawan Munir Ahmed got married to Pakistan's Manel Khan through a WhatsApp call. The wedding came to light after India asked Pakistani nationals to leave after Pahalgam attack ... .
    ×