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

University of Hong Kong

The University of Hong Kong (often abbreviated as HKU, informally known as Hong Kong University) is a public research university located in Pokfulam, Hong Kong, founded in 1911 during the British Colonial era. It is the oldest tertiary institution in Hong Kong, originally established to compete with other Great Powers that had opened higher learning institutions in China at the beginning of the twentieth century. The Hong Kong College of Medicine for Chinese, established in 1887, evolved to be the medical faculty, one of its first three faculties alongside Arts and Engineering. Academic life at the university was disrupted by the Japanese occupation of Hong Kong; however, following the end of the Second World War, the university underwent expansion with the founding of further departments and faculties.

Today, HKU is organised into 10 academic faculties with English as the main language of instruction. It exhibits strength in scholarly research and education of accounting & finance, biomedicine,humanities, law, architecture, and political sciences, and is the first team in the world which successfully isolated the corona virus, the Causative agent of SARS.

HKU Station

HKU is a station on the Hong Kong MTR Island Line located in the Shek Tong Tsui neighbourhood of the Western District, Hong Kong. It is named after The University of Hong Kong, which is also served by the station.

Part of the West Island Line, a westward extension to the existing Island Line, HKU Station opened on 28 December 2014 along with Kennedy Town Station.

As of its opening, HKU Station is the largest and deepest station in the MTR network.

Naming disputes

There were disputes among locals and district councillors over the station's name. Some suggested to restore the previous official name "Belcher" (寶翠, [pǒutsʰɵ̄y], bou2 ceoi3) after The Belcher's, a housing development in the area, as well as Belcher Street and Belcher Bay. Some believed that the MTR Corporation's decision to change the name to "University" was not well consulted within the community, while others worried that it might cause confusion with another existing University Station on the East Rail Line. Some also suggested "Shek Tong Tsui", after the area the station would serve.

HKU (disambiguation)

HKU most commonly refers to:

  • The University of Hong Kong, a university in Hong Kong
  • HKU Station, a station on the Hong Kong MTR Island Line located near The University of Hong Kong
  • HKU may also refers to:

  • Hsing-Kuo University
  • Hungkuang University
  • Hasan Kalyoncu University, a university in Turkey
  • Hazrat Karmanwala University, a university in Pakistan
  • Utrecht School of the Arts, translated from Dutch name 'Hogeschool voor de Kunsten Utrecht'
  • Podcasts:

    • the University of Hong Kong (HKU) campus tour

      Let our student ambassador Heidi and Simon be your virtual guide! They will take you through the University's most famous buildings and landmarks, and share their tips on having fun at HKU. The tour won't take long, but you will see the best parts of HKU for sure! HKU Admissions: https://aal.hku.hk/admissions/ Admissions information for DSE students: http://www.hku.hk/dse Admissions information for international students: http://www.hku.hk/international

      published: 08 May 2019
    • HKU Campus Tour

      Virtually visiting 4 HKU campuses with Vietnamese students Explore the dynamic learning environment at HKU Business School - a part of the oldest and globally recognized university in Hong Kong. Let's discover the 4 campuses with their unique characteristics and immerse ourselves in distinctive experiences that nurture the leaders of the future.

      published: 22 Feb 2024
    • STUDYING ABROAD in hong kong🍙: hku campus, ocean park, dorm tour, bar hopping, busy classes & food

      Grammarly is a must-have for all Students! Sign up and download for FREE using my link: http://grammarly.com/saranghoe01 Yesstyle code: SARANGHOE12 for 12% off orders over $59 ˚୨୧⋆socials instagram: sarang.hoe tiktok: tracyy_s spotify: tracu https://open.spotify.com/user/oh6ta3a... pinterest: https://pin.it/1uoj8TK ◡̈ email [for business inquiries] heyyitstracy@gmail.com ₊˚⊹♡faq name: tracy age: 20 birthday: feb 2, 2003 ethnicity: korean location: toronto, canada born in: toronto, canada camera: canon g7x mark iii editing: final cut pro ♬ bgm: - Music by Public Library Commute - With Somebody - https://thmatc.co/?l=5BCC4777 -gyoshi: https://youtu.be/3NA5Ijormw4?si=Ru90YX4p1clKbpYd -oneul: https://youtu.be/Wfngv6Itf10?si=KdyP2FHagZX7ZzcQ -shushubobo: https://youtu.be/7qws8qfSKzQ?si=...

      published: 04 Feb 2024
    • HKU Main Campus

      A tour to find out more about our HKU Main Campus located at Pok Fu Lam where our Masters Programmes students are held.

      published: 07 Oct 2020
    • Salary of Top University Graduates in Hong Kong | 香港大學畢業生工資有多少??

      100% UV Protection, Polarised Lenses, Free Shipping: https://www.venturesunglasses.com/ (Discount ending soon!!)

      published: 04 Mar 2021
    • what i eat in a week studying abroad in hong kong🍙 (hku school food, street food, noodles & more)

      Grammarly is a must-have for all Students! Sign up and download for FREE using my link: https://grammarly.com/saranghoe05 🤍 ˚୨୧⋆socials instagram: sarang.hoe tiktok: tracyy_s spotify: tracu https://open.spotify.com/user/oh6ta3a... pinterest: https://pin.it/1uoj8TK Yesstyle code: SARANGHOE12 for 12% off orders over $59 ◡̈ email [for business inquiries] saranghoe@algebramedia.com ₊˚⊹♡faq name: tracy age: 20 birthday: feb 2, 2003 ethnicity: korean location: toronto, canada born in: toronto, canada camera: canon g7x mark iii editing: final cut pro ♬ bgm: -b jyun about time: https://youtu.be/EHyHOY8bCwE?si=1yus0pwmfkQWsYuP -gyoshi: https://youtu.be/QbVkH-YOPOA?si=yb9VuI6KkEBhk6pY -jjobenn breakfast: https://youtu.be/rju4DBe_dJ0?si=KBNzXf1Ygosnl8uh -shushubobo: https://youtu.be/dFKVWiyDvT...

      published: 04 May 2024
    • 為什麼我後悔進入香港大學?| My Regrets About Going to HKU

      由小學到入了香港大學,我感覺我都是跟着別人的步伐走,不是做自已喜歡的事。出發去美國前忽發其想,決定拍下這段影片。我以後會以這段影片為記,時刻提醒自己每次用心制作影片的目的。 People love to tell you what to do. But they don't have to suffer with you if you end up not liking it....... ------------------------------ My IG: https://www.instagram.com/torres_pit/ BG Music: Jeff Kaale (X I X X) - strawberry Jeff Kaale (X I X X) - For Love Andrew Applepie - Nobody Knows Subtitles: Kelsey Kung

      published: 29 Jan 2019
    • 【MV】香港大學 明我以德 HKU Brighten Me with Virtues

      This song was composed by an all-alumni-cast for the University of Hong Kong’s Centenary Celebrations. Music by Sam Hui 許冠傑 (BA 1971) Lyrics by Lin Xi 林夕 (BA 1984) Music arrangement by Adrian Chow 周博賢 (LLB 1991, PCLL 1992, LLM 1994) Vocals by Kay Tse 謝安琪 (BA) , Alfred Hui 許廷鏗 (BDS 2012) and HKU students Production by Development & Alumni Affairs Office, HKU More information here: http://100.hku.hk/galadinner/song/ Stay in touch with HKU: https://www.alumni.hku.hk/ Facebook: https://www.facebook.com/100HKU #HKU #明我以德 #CentenaryCelebrations

      published: 21 Dec 2018
    • [HKU Engineering] HKU-Cambridge Undergraduate Recruitment Scheme (Engineering)

      The "HKU-Cambridge Undergraduate Recruitment Scheme (Engineering)" (the scheme) is a competitive scheme for high-calibre students with excellent academic credentials. Under the Scheme, selected BEng students will study at HKU for the first two years, and continue their studies at the University of Cambridge for their third to fifth year of studies. Upon successful completion of the five years of studies, students will be conferred the Master of Engineering and Bachelor of Arts (Honours) degrees by the University of Cambridge, and the Bachelor of Engineering degree by HKU. For details, please visit https://www.ugadmissions.engg.hku.hk/.

      published: 13 Mar 2023
    • Welcome to HKU (English)

      Video credit: HKU U-Vision uvision.hku.hk

      published: 12 Mar 2014
    the University of Hong Kong (HKU) campus tour
    2:32

    the University of Hong Kong (HKU) campus tour

    • Order:
    • Duration: 2:32
    • Uploaded Date: 08 May 2019
    • views: 121703
    Let our student ambassador Heidi and Simon be your virtual guide! They will take you through the University's most famous buildings and landmarks, and share their tips on having fun at HKU. The tour won't take long, but you will see the best parts of HKU for sure! HKU Admissions: https://aal.hku.hk/admissions/ Admissions information for DSE students: http://www.hku.hk/dse Admissions information for international students: http://www.hku.hk/international
    https://wn.com/The_University_Of_Hong_Kong_(Hku)_Campus_Tour
    HKU Campus Tour
    9:24

    HKU Campus Tour

    • Order:
    • Duration: 9:24
    • Uploaded Date: 22 Feb 2024
    • views: 25037
    Virtually visiting 4 HKU campuses with Vietnamese students Explore the dynamic learning environment at HKU Business School - a part of the oldest and globally recognized university in Hong Kong. Let's discover the 4 campuses with their unique characteristics and immerse ourselves in distinctive experiences that nurture the leaders of the future.
    https://wn.com/Hku_Campus_Tour
    STUDYING ABROAD in hong kong🍙: hku campus, ocean park, dorm tour, bar hopping, busy classes & food
    21:44

    STUDYING ABROAD in hong kong🍙: hku campus, ocean park, dorm tour, bar hopping, busy classes & food

    • Order:
    • Duration: 21:44
    • Uploaded Date: 04 Feb 2024
    • views: 713748
    Grammarly is a must-have for all Students! Sign up and download for FREE using my link: http://grammarly.com/saranghoe01 Yesstyle code: SARANGHOE12 for 12% off orders over $59 ˚୨୧⋆socials instagram: sarang.hoe tiktok: tracyy_s spotify: tracu https://open.spotify.com/user/oh6ta3a... pinterest: https://pin.it/1uoj8TK ◡̈ email [for business inquiries] heyyitstracy@gmail.com ₊˚⊹♡faq name: tracy age: 20 birthday: feb 2, 2003 ethnicity: korean location: toronto, canada born in: toronto, canada camera: canon g7x mark iii editing: final cut pro ♬ bgm: - Music by Public Library Commute - With Somebody - https://thmatc.co/?l=5BCC4777 -gyoshi: https://youtu.be/3NA5Ijormw4?si=Ru90YX4p1clKbpYd -oneul: https://youtu.be/Wfngv6Itf10?si=KdyP2FHagZX7ZzcQ -shushubobo: https://youtu.be/7qws8qfSKzQ?si=LSR7BycGXk42GVaJ -oneul: https://youtu.be/9LoNvkk0OnI?si=9xhrhUKeA9CCNkdU -shushubobo: https://youtu.be/bQCh3kVzCa0?si=ZYx-J0uqreFYjRxc -grocery: https://youtu.be/M9WbjhcJD0I?si=W4LOW6oTtoblORA5
    https://wn.com/Studying_Abroad_In_Hong_Kong🍙_Hku_Campus,_Ocean_Park,_Dorm_Tour,_Bar_Hopping,_Busy_Classes_Food
    HKU Main Campus
    3:22

    HKU Main Campus

    • Order:
    • Duration: 3:22
    • Uploaded Date: 07 Oct 2020
    • views: 31379
    A tour to find out more about our HKU Main Campus located at Pok Fu Lam where our Masters Programmes students are held.
    https://wn.com/Hku_Main_Campus
    Salary of Top University Graduates in Hong Kong | 香港大學畢業生工資有多少??
    10:12

    Salary of Top University Graduates in Hong Kong | 香港大學畢業生工資有多少??

    • Order:
    • Duration: 10:12
    • Uploaded Date: 04 Mar 2021
    • views: 1173171
    100% UV Protection, Polarised Lenses, Free Shipping: https://www.venturesunglasses.com/ (Discount ending soon!!)
    https://wn.com/Salary_Of_Top_University_Graduates_In_Hong_Kong_|_香港大學畢業生工資有多少
    what i eat in a week studying abroad in hong kong🍙 (hku school food, street food, noodles & more)
    24:10

    what i eat in a week studying abroad in hong kong🍙 (hku school food, street food, noodles & more)

    • Order:
    • Duration: 24:10
    • Uploaded Date: 04 May 2024
    • views: 534835
    Grammarly is a must-have for all Students! Sign up and download for FREE using my link: https://grammarly.com/saranghoe05 🤍 ˚୨୧⋆socials instagram: sarang.hoe tiktok: tracyy_s spotify: tracu https://open.spotify.com/user/oh6ta3a... pinterest: https://pin.it/1uoj8TK Yesstyle code: SARANGHOE12 for 12% off orders over $59 ◡̈ email [for business inquiries] saranghoe@algebramedia.com ₊˚⊹♡faq name: tracy age: 20 birthday: feb 2, 2003 ethnicity: korean location: toronto, canada born in: toronto, canada camera: canon g7x mark iii editing: final cut pro ♬ bgm: -b jyun about time: https://youtu.be/EHyHOY8bCwE?si=1yus0pwmfkQWsYuP -gyoshi: https://youtu.be/QbVkH-YOPOA?si=yb9VuI6KkEBhk6pY -jjobenn breakfast: https://youtu.be/rju4DBe_dJ0?si=KBNzXf1Ygosnl8uh -shushubobo: https://youtu.be/dFKVWiyDvT0?si=nGjEtZziZ5cwRalG -shushubobo: https://youtu.be/VU8yNqlgSfw?si=cqvl-TUc4u9YwYJz -shushubobo: https://youtu.be/OovqiIbT96A?si=BNgmls6olLX7waZn -shushuboi: https://youtu.be/1C24Id-qONA?si=y14QFlYq11Tg3Zhs -su mini: https://youtu.be/ub0wFkRcqjg?si=JHtfQt2-MxydwupP -bgm president: https://youtu.be/vfUWb_LdCPw?si=7ZqJULB_UeA5vWVe
    https://wn.com/What_I_Eat_In_A_Week_Studying_Abroad_In_Hong_Kong🍙_(Hku_School_Food,_Street_Food,_Noodles_More)
    為什麼我後悔進入香港大學?| My Regrets About Going to HKU
    7:28

    為什麼我後悔進入香港大學?| My Regrets About Going to HKU

    • Order:
    • Duration: 7:28
    • Uploaded Date: 29 Jan 2019
    • views: 690824
    由小學到入了香港大學,我感覺我都是跟着別人的步伐走,不是做自已喜歡的事。出發去美國前忽發其想,決定拍下這段影片。我以後會以這段影片為記,時刻提醒自己每次用心制作影片的目的。 People love to tell you what to do. But they don't have to suffer with you if you end up not liking it....... ------------------------------ My IG: https://www.instagram.com/torres_pit/ BG Music: Jeff Kaale (X I X X) - strawberry Jeff Kaale (X I X X) - For Love Andrew Applepie - Nobody Knows Subtitles: Kelsey Kung
    https://wn.com/為什麼我後悔進入香港大學?|_My_Regrets_About_Going_To_Hku
    【MV】香港大學 明我以德 HKU Brighten Me with Virtues
    4:08

    【MV】香港大學 明我以德 HKU Brighten Me with Virtues

    • Order:
    • Duration: 4:08
    • Uploaded Date: 21 Dec 2018
    • views: 212396
    This song was composed by an all-alumni-cast for the University of Hong Kong’s Centenary Celebrations. Music by Sam Hui 許冠傑 (BA 1971) Lyrics by Lin Xi 林夕 (BA 1984) Music arrangement by Adrian Chow 周博賢 (LLB 1991, PCLL 1992, LLM 1994) Vocals by Kay Tse 謝安琪 (BA) , Alfred Hui 許廷鏗 (BDS 2012) and HKU students Production by Development & Alumni Affairs Office, HKU More information here: http://100.hku.hk/galadinner/song/ Stay in touch with HKU: https://www.alumni.hku.hk/ Facebook: https://www.facebook.com/100HKU #HKU #明我以德 #CentenaryCelebrations
    https://wn.com/【Mv】香港大學_明我以德_Hku_Brighten_Me_With_Virtues
    [HKU Engineering] HKU-Cambridge Undergraduate Recruitment Scheme (Engineering)
    2:02

    [HKU Engineering] HKU-Cambridge Undergraduate Recruitment Scheme (Engineering)

    • Order:
    • Duration: 2:02
    • Uploaded Date: 13 Mar 2023
    • views: 1086
    The "HKU-Cambridge Undergraduate Recruitment Scheme (Engineering)" (the scheme) is a competitive scheme for high-calibre students with excellent academic credentials. Under the Scheme, selected BEng students will study at HKU for the first two years, and continue their studies at the University of Cambridge for their third to fifth year of studies. Upon successful completion of the five years of studies, students will be conferred the Master of Engineering and Bachelor of Arts (Honours) degrees by the University of Cambridge, and the Bachelor of Engineering degree by HKU. For details, please visit https://www.ugadmissions.engg.hku.hk/.
    https://wn.com/Hku_Engineering_Hku_Cambridge_Undergraduate_Recruitment_Scheme_(Engineering)
    Welcome to HKU (English)
    5:43

    Welcome to HKU (English)

    • Order:
    • Duration: 5:43
    • Uploaded Date: 12 Mar 2014
    • views: 140198
    Video credit: HKU U-Vision uvision.hku.hk
    https://wn.com/Welcome_To_Hku_(English)
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME:

    the University of Hong Kong (HKU) campus tour

    Let our student ambassador Heidi and Simon be your virtual guide! They will take you through the University's most famous buildings and landmarks, and share their tips on having fun at HKU. The tour won't take long, but you will see the best parts of HKU for sure! HKU Admissions: https://aal.hku.hk/admissions/ Admissions information for DSE students: http://www.hku.hk/dse Admissions information for international students: http://www.hku.hk/international
    2:32
    the University of Hong Kong (HKU) campus tour
    Let our student ambassador Heidi and Simon be your virtual guide! They will take you throu...
    published: 08 May 2019
    Play in Full Screen
    9:24
    HKU Campus Tour
    Virtually visiting 4 HKU campuses with Vietnamese students Explore the dynamic learning e...
    published: 22 Feb 2024
    Play in Full Screen
    21:44
    STUDYING ABROAD in hong kong🍙: hku campus, ocean park, dorm tour, bar hopping, busy classes & food
    Grammarly is a must-have for all Students! Sign up and download for FREE using my link: ht...
    published: 04 Feb 2024
    Play in Full Screen
    3:22
    HKU Main Campus
    A tour to find out more about our HKU Main Campus located at Pok Fu Lam where our Masters ...
    published: 07 Oct 2020
    Play in Full Screen
    10:12
    Salary of Top University Graduates in Hong Kong | 香港大學畢業生工資有多少??
    100% UV Protection, Polarised Lenses, Free Shipping: https://www.venturesunglasses.com/ (...
    published: 04 Mar 2021
    Play in Full Screen
    24:10
    what i eat in a week studying abroad in hong kong🍙 (hku school food, street food, noodles & more)
    Grammarly is a must-have for all Students! Sign up and download for FREE using my link: ht...
    published: 04 May 2024
    Play in Full Screen
    7:28
    為什麼我後悔進入香港大學?| My Regrets About Going to HKU
    由小學到入了香港大學,我感覺我都是跟着別人的步伐走,不是做自已喜歡的事。出發去美國前忽發其想,決定拍下這段影片。我以後會以這段影片為記,時刻提醒自己每次用心制作影片的目的。 Pe...
    published: 29 Jan 2019
    Play in Full Screen
    4:08
    【MV】香港大學 明我以德 HKU Brighten Me with Virtues
    This song was composed by an all-alumni-cast for the University of Hong Kong’s Centenary C...
    published: 21 Dec 2018
    Play in Full Screen
    2:02
    [HKU Engineering] HKU-Cambridge Undergraduate Recruitment Scheme (Engineering)
    The "HKU-Cambridge Undergraduate Recruitment Scheme (Engineering)" (the scheme) is a compe...
    published: 13 Mar 2023
    Play in Full Screen
    5:43
    Welcome to HKU (English)
    Video credit: HKU U-Vision uvision.hku.hk
    published: 12 Mar 2014
    Play in Full Screen

    University of Hong Kong

    The University of Hong Kong (often abbreviated as HKU, informally known as Hong Kong University) is a public research university located in Pokfulam, Hong Kong, founded in 1911 during the British Colonial era. It is the oldest tertiary institution in Hong Kong, originally established to compete with other Great Powers that had opened higher learning institutions in China at the beginning of the twentieth century. The Hong Kong College of Medicine for Chinese, established in 1887, evolved to be the medical faculty, one of its first three faculties alongside Arts and Engineering. Academic life at the university was disrupted by the Japanese occupation of Hong Kong; however, following the end of the Second World War, the university underwent expansion with the founding of further departments and faculties.

    Today, HKU is organised into 10 academic faculties with English as the main language of instruction. It exhibits strength in scholarly research and education of accounting & finance, biomedicine,humanities, law, architecture, and political sciences, and is the first team in the world which successfully isolated the corona virus, the Causative agent of SARS.

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

    Edit

    HKU participates in Times Higher Education Asia Universities Summit 2025 (The University of Hong Kong)

    Public Technologies 29 Apr 2025
    ) Back HKU participates in Times Higher Education Asia Universities Summit 2025 ... Professor Stephanie Ma, Associate Vice-President (Research and Innovation) at HKU, participated in the Summit as a panelist.
    Edit

    HKU holds the 28th Recognition Ceremony (The University of Hong Kong)

    Public Technologies 28 Apr 2025
    ) Back HKU holds the 28th Recognition Ceremony. Honouring HKU students for their exceptional achievements and contribution. to the HKU Community and Beyond ... https.//www.cedars.hku.hk/28th-recognition-ceremony ... http.//cedars.hku.hk/prize/.
    Edit

    HKU holds Entrance Scholarships Award Ceremony for 2024-25 (The University of Hong Kong)

    Public Technologies 27 Apr 2025
    The University of Hong Kong (HKU) held the HKU Entrance Scholarships Award Ceremony on April 11 (Friday) to recognise outstanding academic and non-academic achievements of students admitted to the University in the 2024-25 academic year.
    Edit

    HKU to implement a new round of special arrangements for tourist flow management from 28 April to 10 May (The University of Hong Kong)

    Public Technologies 23 Apr 2025
    ) Back HKU to implement a new round of special arrangements for tourist flow management from 28 April to 10 May ... The University of Hong Kong (HKU) today (23 April) announced that the University will ...
    Edit

    HKU Physicists Uncover Hidden Order in the Quantum World Through Deconfined Quantum Critical Points (The University of Hong Kong)

    Public Technologies 23 Apr 2025
    ) Back HKU Physicists Uncover Hidden Order in the Quantum World Through Deconfined Quantum Critical Points ... For media enquiries, please contact HKU Faculty of Science (tel ... caseyto@hku.hk / email. cindycst@hku.hk) ... https.//www.scifac.hku.hk/press.
    Edit

    Mainland woman pleads guilty to using fake credentials to enroll HKU

    Hong Kong Standard 18 Apr 2025
    A 28-year-old woman from mainland China has pleaded guilty to charges related to using fake credentials to gain admission to the University of Hong Kong (HKU).&nbsp; ... Additionally, she was charged with possessing a fake HKU certificate in July 2024.
    Edit

    Lawyers file lawsuit against Costa Rica for detaining minors deported from the US

    Jurist 18 Apr 2025
    A group of lawyers filed a lawsuit on Thursday before the United Nations Committee on the Rights of the Child against the Costa Rican government for allegedly violating the rights of minors deported from the United States ... The group stated ... ....
    Edit

    HKU holds Excellent and Inclusive Practice Award Ceremony 2024-25 (The University of Hong Kong)

    Public Technologies 17 Apr 2025
    ) Back HKU holds Excellent and Inclusive Practice Award Ceremony 2024-25 ... "Looking ahead, I hope we will continue working together to promote positive change for our students and create bigger impact within HKU and beyond," Dr Lam said.
    Edit

    “HKU Cares Social Innovation Challenge 2025”: Student Proposals Spark AI Creativity and Cross-Sector Partnerships for a Better Society (The University of Hong Kong)

    Public Technologies 17 Apr 2025
    ) Back "HKU Cares Social Innovation Challenge 2025" ... HKU student teams presented their social innovation proposals to the judging panel during the presentation competition ... cares@hku.hk.
    Edit

    HKU Institute for China Business Hosts "2025 Future Forum" Insightful Dialogue on Future Trends: Integrating Wisdom to Shape Tomorrow (The University of Hong Kong)

    Public Technologies 17 Apr 2025
    ) Back HKU Institute for China Business Hosts "2025 Future Forum" ... HKU Institute for China Business Hosts "2025 Future Forum" ... HKU Institute for China Business ... Website of HKU Institute for China Business - https.//icb.hku.hk.
    Edit

    The 6th HKU Quarterly Forum on Chinese Economy Navigates China's Trade Relations with the US and its Macroeconomic Outlook (The University of Hong Kong)

    Public Technologies 17 Apr 2025
    ) Back The 6th HKU Quarterly Forum on Chinese Economy ... Professor Hongbin CAI, Dean and Chair of Economics, Director of the Institute of China Economy (ICE) of HKU Business School, delivers the welcoming remarks ... HKU Business School ... denise1@hku.hk.
    Edit

    Zimbabwe president signs law to curb civic space

    Jurist 17 Apr 2025
    Zimbabwe President Emmerson Mnangagwa signed a law that would significantly restrict the rights to freedom of association and expression in the country on Friday, according to Human Rights Watch ... ....
    Edit

    HKU civil engineering team develops innovative solution for tracking antibiotic resistance genes (The University of Hong Kong)

    Public Technologies 16 Apr 2025
    ) Back HKU civil engineering team develops innovative solution for tracking antibiotic resistance genes ... More information about Professor Zhang and the research team can be found at https.//smile.hku.hk/ ... Faculty of Engineering, HKU ... chungmc@hku.hk).
    Edit

    HKU Signs Agreement with GETECH and TCL to Establish Joint Lab for Industrial AI Innovation (The University of Hong Kong)

    Public Technologies 16 Apr 2025
    ) Back HKU Signs Agreement with GETECH and TCL to Establish Joint Lab for Industrial AI Innovation ... Professor Xiang Zhang, President of HKU delivers the opening ... Professor Max Shen, Vice President of HKU deliver the closing.
    ×