'+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; })); }); -->

Hiroshi Fujioka

Kunihiro Fujioka (藤岡 邦弘 Fujioka Kunihiro, born February 19, 1946 in Kuma (Present: Kumakōgen), Ehime), better known by his stage name Hiroshi Fujioka (藤岡 弘、 Fujioka Hiroshi), is a Japanese actor known for playing the hero Takeshi Hongo in the tokusatsu superhero series Kamen Rider, and later the Sega Saturn mascot Segata Sanshiro. Fujioka is a cultural icon in Japan, even having the minor planet 12408 Fujioka, discovered by Akimasa Nakamura, named in his honor. Fujioka writes his name with the ideographic comma at the end (after the kanji for "Hiroshi" ()), saying "It is meant to remind me to reconsider myself and what it is that I need to achieve. It shows that I am not yet finished with my tasks and must continue working toward their accomplishment."

Voiceover roles

  • Mulan (1998) as Shan Yu
  • Kamen Rider V3 (1998) as Takeshi Hongo/Kamen Rider 1
  • Shenmue (1999) as Iwao Hazuki
  • Shenmue II (2001) as Iwao Hazuki
  • Arcade Gamer Fubuki (2002–2003) as Leader
  • Kamen Rider Seigi No Keihu (2003) as Takeshi Hongo/Kamen Rider 1
  • Growlanser Generations

    Growlanser Generations is both a compilation of Growlanser II and Growlanser III and the sole North American release of both games. The North American localizations of both games were produced by Working Designs. This is also the last video game Working Designs released in the U.S. before they became defunct in December 2005.

    Growlanser Generations is not to be confused with Growlanser V: Generations, the fifth entry in the Growlanser series.

    Development

    Growlanser Generations can be considered an American version of Growlanser Collection, which contained Growlanser II & III. However, Growlanser II and Growlanser III were originally planned for separate American releases by Working Designs. Due to opposition from Sony, Working Designs was forced to release both games together.

    Differences

    The versions of Growlanser II and III presented in Growlanser Generations are slightly different than their Japanese counterparts. Working Designs opted to add an Auto-Battle feature to both games, as well as enhanced voice acting options, such as the ability to switch voice acting on or off for specific characters. Each game also has a newly added gallery of artwork, vocal outtakes (a staple of Working Designs titles), and music available upon completion.

    Growlanser: Heritage of War

    Growlanser: Heritage of War (known as Growlanser V: Generations in Japan) is a tactical role-playing video game for the PlayStation 2. It was developed by Career Soft, and published in Japan by Atlus in 2006. Atlus USA published the game in North America on September 18, 2007, and Rising Star Games released it in Europe on June 13, 2008.

    Gameplay

    The game uses strategic party based combat and has player manageable character ability tree. It uses hand drawn animation and character portraits by Satoshi Urushihara. It has the ability to cultivate intimate relationships with characters. Battles take place in real-time, and there is no transition to a separate battle map (which is usually found in traditional Japanese RPGs). As such the game forces players to come up with strategies and tactics immediately as the situation calls for it.

    Plot

    Once, an isolated island continent was plunged into war. The people who wished to end the warring revived a powerful weapon called the "Admonisher" and threatened the participants of the war with it. Thus all of the wars were ended by force. The people behind this called themselves the "Peace Maintenance Brigade." 20 years later the old men of the Brigade are no longer able to maintain the peace.

    Podcasts:

    • Kamen Rider Lets Go Rider Kick (Hiroshi Fujioka & Ichiro Mizuki)

      Kamen Rider - Let´s Go Rider Kick Hiroshi Fujioka & Ichiro Mizuki Subí este video a Youtube porque no encontré otra versión de mayor duración. Gracias a Pablo J.M. por subir el video a FaceB y a Hoono Fansub. Hiroshi Fujioka junto a Ichiro Mizuki cantando el Opening de Kamen Rider.

      published: 28 Jul 2009
    • KOF All Star x Samurai Shodown Live Action - feat. Hiroshi Fujioka & Yuichi Nakamura 🔥

      A live action encounter starring Samurai Shodown's Haohmaru - played by Hiroshi Fujioka (AKA Segata Sanshiro) and KOF's Kyo Kusanagi - played by Yuichi Nakamura. This trailer promotes the new Samurai Shodown collaboration with Netmarble's smartphone action RPG, King of Fighters: All Star. More details inside TFG's full article: ➡️ http://www.fightersgeneration.com/news1/samsho-kofallstar.htm Full credit for this trailer goes to Netmarble Japan / SNK. Official links below: https://kofallstar.netmarble.jp https://twitter.com/KOF_ALLSTAR http://kofallstar.netmarble.jp/download/ ©SNK CORPORATION ALL RIGHTS RESERVED. ©Netmarble Corp.&Netmarble Neo Inc. 2018 All Rights Reserved. TFG Haohmaru Profile / Art Gallery: http://www.fightersgeneration.com/characters/haohmaru.html TFG Kyo Kusanagi Pro...

      published: 22 May 2019
    • 藤岡弘探検隊 落石 #ヤラセ #ドキュメンタリー

      published: 28 Nov 2022
    • Sega Shiro 2020 Commericals 1-3 ENGLISH SUBBED (Segata Sanshiro Sequel)

      The followup to the Segata Sanshiro commericals from the 90s, with English captions.

      published: 09 Aug 2020
    • Fujioka Hiroshi Expedition Curupira

      published: 10 Jul 2011
    • 藤岡弘探検隊先住民に襲撃される #藤岡弘

      published: 25 Nov 2022
    • Hiroshi Fujioka visits an orphanage in Indonesia

      Hiroshi Fujioka a.k.a Hongo Takeshi / Kamen Rider Ichigo's charity in Indonesia

      published: 03 Oct 2016
    Kamen Rider Lets Go Rider Kick (Hiroshi Fujioka & Ichiro Mizuki)
    3:11

    Kamen Rider Lets Go Rider Kick (Hiroshi Fujioka & Ichiro Mizuki)

    • Order:
    • Duration: 3:11
    • Uploaded Date: 28 Jul 2009
    • views: 241557
    Kamen Rider - Let´s Go Rider Kick Hiroshi Fujioka & Ichiro Mizuki Subí este video a Youtube porque no encontré otra versión de mayor duración. Gracias a Pablo J.M. por subir el video a FaceB y a Hoono Fansub. Hiroshi Fujioka junto a Ichiro Mizuki cantando el Opening de Kamen Rider.
    https://wn.com/Kamen_Rider_Lets_Go_Rider_Kick_(Hiroshi_Fujioka_Ichiro_Mizuki)
    KOF All Star x Samurai Shodown Live Action - feat. Hiroshi Fujioka & Yuichi Nakamura 🔥
    2:04

    KOF All Star x Samurai Shodown Live Action - feat. Hiroshi Fujioka & Yuichi Nakamura 🔥

    • Order:
    • Duration: 2:04
    • Uploaded Date: 22 May 2019
    • views: 20389
    A live action encounter starring Samurai Shodown's Haohmaru - played by Hiroshi Fujioka (AKA Segata Sanshiro) and KOF's Kyo Kusanagi - played by Yuichi Nakamura. This trailer promotes the new Samurai Shodown collaboration with Netmarble's smartphone action RPG, King of Fighters: All Star. More details inside TFG's full article: ➡️ http://www.fightersgeneration.com/news1/samsho-kofallstar.htm Full credit for this trailer goes to Netmarble Japan / SNK. Official links below: https://kofallstar.netmarble.jp https://twitter.com/KOF_ALLSTAR http://kofallstar.netmarble.jp/download/ ©SNK CORPORATION ALL RIGHTS RESERVED. ©Netmarble Corp.&Netmarble Neo Inc. 2018 All Rights Reserved. TFG Haohmaru Profile / Art Gallery: http://www.fightersgeneration.com/characters/haohmaru.html TFG Kyo Kusanagi Profile / Art Gallery: http://www.fightersgeneration.com/characters2/kyo.html TFG Samurai Shodown (2019) Profile / Art Gallery: http://www.fightersgeneration.com/games/samuraishodown.html TFG Twitch: https://www.twitch.tv/Fighters_Gen TFG Twitter: https://twitter.com/Fighters_Gen TFG Facebook: https://www.facebook.com/FightersGen/ TFG Instagram: https://instagram.com/Fighters_Gen/ FightersGeneration.com ✔️ #SamuraiShodown #SNK #FGC
    https://wn.com/Kof_All_Star_X_Samurai_Shodown_Live_Action_Feat._Hiroshi_Fujioka_Yuichi_Nakamura_🔥
    藤岡弘探検隊 落石 #ヤラセ #ドキュメンタリー
    0:22

    藤岡弘探検隊 落石 #ヤラセ #ドキュメンタリー

    • Order:
    • Duration: 0:22
    • Uploaded Date: 28 Nov 2022
    • views: 75982
    https://wn.com/藤岡弘探検隊_落石_#ヤラセ_#ドキュメンタリー
    Sega Shiro 2020 Commericals 1-3 ENGLISH SUBBED (Segata Sanshiro Sequel)
    3:21

    Sega Shiro 2020 Commericals 1-3 ENGLISH SUBBED (Segata Sanshiro Sequel)

    • Order:
    • Duration: 3:21
    • Uploaded Date: 09 Aug 2020
    • views: 52838
    The followup to the Segata Sanshiro commericals from the 90s, with English captions.
    https://wn.com/Sega_Shiro_2020_Commericals_1_3_English_Subbed_(Segata_Sanshiro_Sequel)
    Fujioka Hiroshi Expedition   Curupira
    8:39

    Fujioka Hiroshi Expedition Curupira

    • Order:
    • Duration: 8:39
    • Uploaded Date: 10 Jul 2011
    • views: 8728
    https://wn.com/Fujioka_Hiroshi_Expedition_Curupira
    藤岡弘探検隊先住民に襲撃される #藤岡弘
    0:11

    藤岡弘探検隊先住民に襲撃される #藤岡弘

    • Order:
    • Duration: 0:11
    • Uploaded Date: 25 Nov 2022
    • views: 807561
    https://wn.com/藤岡弘探検隊先住民に襲撃される_#藤岡弘
    Hiroshi Fujioka visits an orphanage in Indonesia
    3:01

    Hiroshi Fujioka visits an orphanage in Indonesia

    • Order:
    • Duration: 3:01
    • Uploaded Date: 03 Oct 2016
    • views: 4397
    Hiroshi Fujioka a.k.a Hongo Takeshi / Kamen Rider Ichigo's charity in Indonesia
    https://wn.com/Hiroshi_Fujioka_Visits_An_Orphanage_In_Indonesia
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 20:49

    Kamen Rider Lets Go Rider Kick (Hiroshi Fujioka & Ichiro Mizuki)

    Kamen Rider - Let´s Go Rider Kick Hiroshi Fujioka & Ichiro Mizuki Subí este video a Youtube porque no encontré otra versión de mayor duración. Gracias a Pablo J.M. por subir el video a FaceB y a Hoono Fansub. Hiroshi Fujioka junto a Ichiro Mizuki cantando el Opening de Kamen Rider.
    3:11
    Kamen Rider Lets Go Rider Kick (Hiroshi Fujioka & Ichiro Mizuki)
    Kamen Rider - Let´s Go Rider Kick Hiroshi Fujioka & Ichiro Mizuki Subí este video a Youtu...
    published: 28 Jul 2009
    Play in Full Screen
    2:04
    KOF All Star x Samurai Shodown Live Action - feat. Hiroshi Fujioka & Yuichi Nakamura 🔥
    A live action encounter starring Samurai Shodown's Haohmaru - played by Hiroshi Fujioka (A...
    published: 22 May 2019
    Play in Full Screen
    0:22
    藤岡弘探検隊 落石 #ヤラセ #ドキュメンタリー
    published: 28 Nov 2022
    Play in Full Screen
    3:21
    Sega Shiro 2020 Commericals 1-3 ENGLISH SUBBED (Segata Sanshiro Sequel)
    The followup to the Segata Sanshiro commericals from the 90s, with English captions.
    published: 09 Aug 2020
    Play in Full Screen
    8:39
    Fujioka Hiroshi Expedition Curupira
    published: 10 Jul 2011
    Play in Full Screen
    0:11
    藤岡弘探検隊先住民に襲撃される #藤岡弘
    published: 25 Nov 2022
    Play in Full Screen
    3:01
    Hiroshi Fujioka visits an orphanage in Indonesia
    Hiroshi Fujioka a.k.a Hongo Takeshi / Kamen Rider Ichigo's charity in Indonesia
    published: 03 Oct 2016
    Play in Full Screen

    Hiroshi Fujioka

    Kunihiro Fujioka (藤岡 邦弘 Fujioka Kunihiro, born February 19, 1946 in Kuma (Present: Kumakōgen), Ehime), better known by his stage name Hiroshi Fujioka (藤岡 弘、 Fujioka Hiroshi), is a Japanese actor known for playing the hero Takeshi Hongo in the tokusatsu superhero series Kamen Rider, and later the Sega Saturn mascot Segata Sanshiro. Fujioka is a cultural icon in Japan, even having the minor planet 12408 Fujioka, discovered by Akimasa Nakamura, named in his honor. Fujioka writes his name with the ideographic comma at the end (after the kanji for "Hiroshi" ()), saying "It is meant to remind me to reconsider myself and what it is that I need to achieve. It shows that I am not yet finished with my tasks and must continue working toward their accomplishment."

    Voiceover roles

  • Mulan (1998) as Shan Yu
  • Kamen Rider V3 (1998) as Takeshi Hongo/Kamen Rider 1
  • Shenmue (1999) as Iwao Hazuki
  • Shenmue II (2001) as Iwao Hazuki
  • Arcade Gamer Fubuki (2002–2003) as Leader
  • Kamen Rider Seigi No Keihu (2003) as Takeshi Hongo/Kamen Rider 1
  • '); } 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)); } }); }); }); // -->
    ×