UGREEN Nexode 100W Charger with Retractable USB Type-C Cable - - | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
-

UGREEN Nexode 100W Charger with Retractable USB Type-C Cable

SKU: X616-65828
R 1 299.11
Available on Backorder

100W GaN fast charging | Built-in retractable USB-C cable | 4 ports — charge up to 4 devices at once | Wide fast-charge protocol support | Multi-layer protection

This item is on backorder — new stock is expected around 2 Oct 2026. Order now and we'll ship yours as soon as it arrives.

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support
Secure payment — PayFast & Yoco · 256-bit SSL encrypted

Frequently Bought Together

100W GaN fast charging | Built-in retractable USB Type-C cable | 4 ports — charge up to 4 devices at once | Wide fast-charge protocol support | Multi-layer protection

The UGREEN Nexode 100W Charger with Retractable USB Type-C Cable is built for anyone who carries too many cables and not enough patience. A 0.75 m USB Type-C cable retracts neatly into the body of the charger, eliminating tangles and keeping your bag or desk organised — no separate cable to forget or lose. With a total output of 100 W and GaN technology driving the circuitry, the Nexode delivers fast, efficient power across four ports simultaneously: a retractable USB Type-C cable, two additional USB Type-C ports, and one USB-A port. The retractable cable and USB Type-C port each support up to 100W, making light work of laptops, tablets, and smartphones that demand serious power. A broad range of fast-charge protocols — including PD 3.0, PD 2.0, PPS, QC 3.0, QC 2.0, UFCS, SCP, FCP, AFC, Apple 2.4A, Samsung 5V/2A, and BC 1.2 — means the charger negotiates the right charge rate for virtually any device you connect. Eight layers of protection, covering overvoltage, overcurrent, short circuit, undervoltage, overpower, overtemperature, interference, and manual restart, keep your devices safe session after session. Compact enough at 68.6 × 56.8 × 50.4 mm to fit comfortably in a travel pouch, the Nexode replaces a drawer full of chargers with a single, reliable unit.

Features

  • Built-in 0.75 m retractable USB Type-C cable — tangle-free and always with you
  • 100W total output via GaN technology for fast, efficient charging
  • 4-port configuration: 1 x retractable USB Type-C cable, 2 x USB Type-C, 1 x USB-A
  • Retractable cable and USB Type-C(1) port each support up to 100 W (single-device)
  • USB Type-C(2) port supports up to 30W; USB-A port supports up to 22.5 W
  • Wide protocol support: UFCS, PD 3.0/2.0, PPS, QC 3.0/2.0, SCP, FCP, AFC, Apple 2.4A, Samsung 5V/2A, BC 1.2
  • 8-layer protection: overvoltage, overcurrent, short circuit, undervoltage, overpower, overtemperature, interference, manual restart
  • Compact GaN design: 68.6 × 56.8 × 50.4 mm, 280g

Specifications

  • Port Configuration:
    • 1 x Retractable USB Type-C Cable
    • 2 x USB Type-C
    • 1 x USB-A
  • Total Output: 100W
  • Fast Charge Protocols:
    • UFCS
    • PD3.0
    • PD2.0
    • PPS
    • QC3.0
    • QC2.0
    • AFC
    • SCP
    • FCP
    • Apple 2.4A
    • Samsung 5V/2A
    • BC1.2
  • GaN Technology: Yes
  • Plug Type: EU
  • Colour: Space Grey
  • Warranty: 24 months
  • Product Dimensions: 6.8 x 5.6 x 5 cm
  • Product Weight: 280g

What's in the Box

  • UGREEN Nexode 100W Charger with Retractable USB Type-C Cable – Space Gray x1
Brand -
Colour Space Grey
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty -
0.0
0 reviews
Login to Review

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

Related Products

GIZZU Universal Travel Adapter
Gizzu

GIZZU Universal Travel Adapter

R 105.17

In Stock

Port Connect 65W Type-C GaN Universal Charger
Port

Port Connect 65W Type-C GaN Universal Charger

R 935.74

In Stock

WINX POWER Fast Type-C 35W GaN Wall Charger
WINX

WINX POWER Fast Type-C 35W GaN Wall Charger

R 250.52

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!