UGREEN 9-in-1 Type-C Hub | HDMI | VGA | LAN | SD/TF | 100W PD | USB3.0 - Ugreen | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Ugreen

UGREEN 9-in-1 Type-C Hub | HDMI | VGA | LAN | SD/TF | 100W PD | USB3.0

SKU: CM498-15600
R 749.00 R 1 129.00
You save R 380.00 (34%)
In Stock
You save R 380.00 (34% off)

The UGREEN 9-in-1 Type-C Hub is a powerful and versatile expansion solution designed to enhance connectivity for laptops, tablets, and smartphones with Type-C ports. Featuring three USB 3.0 ports, 4K HDMI, VGA, RJ45 Gigabit Ethernet, SD and TF card slots, and a 100W Power Delivery (PD) charging...

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

The UGREEN 9-in-1 Type-C Hub is a powerful and versatile expansion solution designed to enhance connectivity for laptops, tablets, and smartphones with Type-C ports. Featuring three USB 3.0 ports, 4K HDMI, VGA, RJ45 Gigabit Ethernet, SD and TF card slots, and a 100W Power Delivery (PD) charging port, this all-in-one hub provides fast data transfer, high-resolution display support, fast internet access, and efficient power management, all in a sleek, premium aluminium casing.

With 5Gbps USB 3.0 transfer speeds, this hub allows you to quickly connect external hard drives, USB flash drives, keyboards, and other peripherals without lag. The 4K HDMI output delivers crisp visuals for presentations, entertainment, or dual-monitor setups, while the VGA port ensures compatibility with older display devices. Enjoy a stable wired internet connection with the Gigabit Ethernet port, perfect for fast, uninterrupted online experiences. Additionally, the SD and TF card slots can be used simultaneously, offering quick access to media files.

Designed for universal compatibility, the UGREEN CM498 hub works with MacBook Pro, MacBook Air, iPad Pro, Dell XPS, Lenovo ThinkPad, Samsung Galaxy devices, and more. Whether you're a professional, student, or remote worker, this compact and lightweight hub is an essential accessory for expanding your device’s capabilities, making multitasking effortless and efficient.

FEATURES:

  • 9-in-1 Type-C Hub
  • Blazing-fast data transfer of 5Gbps speeds
  • Stunning 4K@30Hz HDMI output
  • Full HD 1080P@60Hz VGA compatibility
  • Multi-screen support on HDMI and VGA supports
  • RJ45 Gigabit Ethernet – 10/100/1000Mbps
  • SD & TF card simultaneous use
  •  Type-C 100W PD fast charging
  • Universal compatibility with Type-C devices.
  • Premium & portable design

SPECIFICATIONS:

  • Input: Type-C Male
  • Output Ports:
    • 3 × USB 3.0
    • 1 × HDMI
    • 1 × VGA
    • 1 × RJ45 Gigabit Ethernet
    • 1 × SD Card Slot
    • 1 × TF Card Slot
    • 1 × USB-C PD Charging Port
  • USB 3.0 Transfer Speed: Up to 5Gbps, backward compatible with USB 2.0/1.1
  • HDMI Resolution: Supports up to 4K@30Hz
  • VGA Resolution: Supports up to 1080P@60Hz
  • Dual Display Mode: HDMI and VGA can be used simultaneously
  • Ethernet Speed: Supports 10/100/1000Mbps for reliable wired internet
  • SD & TF Card Slots: Support simultaneous reading with transfer speeds up to 90MB/s
  • Power Delivery: Supports 100W PD pass-through charging via Type-C
  • Material: Premium aluminium casing for durability and heat dissipation
  • Cable Length: Integrated Type-C cable for convenient connectivity
  • Compatibility: Works with MacBook, iPad Pro, Dell, Lenovo, Samsung Galaxy, and most USB-C devices
  • Dimensions: 13.9 x 1.6 x 4.4 cm
  • Weight: 2676.2g

WHAT's IN THE BOX:

  • UGREEN 9-in-1 Type-C Hub - Silver x1
  • User Manual
Brand Ugreen
Colour Silver
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 24 Months
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

-23%
Port Connect 5-in-1 USB Type-C 4K Docking Station
Port

Port Connect 5-in-1 USB Type-C 4K Docking Station

R 269.00 R 349.00

Save R 80.00

In Stock

-35%
UGREEN Revodok Pro 12-in-1 Type-C Docking Station
Ugreen

UGREEN Revodok Pro 12-in-1 Type-C Docking Station

R 4 129.00 R 6 309.00

Save R 2 180.00

In Stock

-18%
Port Connect USB Type-C to 4-port USB-A 3.0 Hub
Port

Port Connect USB Type-C to 4-port USB-A 3.0 Hub

R 179.00 R 219.00

Save R 40.00

In Stock

-33%
UGREEN Revodok 5-in-1 Type-C Hub | 4K HDMI | Type-C | USB3.0
Ugreen

UGREEN Revodok 5-in-1 Type-C Hub | 4K HDMI | Type-C | USB3.0

R 299.00 R 449.00

Save R 150.00

In Stock

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!