UGREEN DP114 8K DisplayPort Male to Male Braided Cable 3m - Ugreen | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Ugreen

UGREEN DP114 8K DisplayPort Male to Male Braided Cable 3m

SKU: DP114-80393
R 209.00 R 319.00
You save R 110.00 (34%)
In Stock
You save R 110.00 (34% off)

Experience 8K visuals with the UGREEN DP114 8K DisplayPort Braided Cable. Designed for high-performance gaming, professional displays, and immersive multimedia setups, this premium DisplayPort cable ensures crisp, detailed visuals with Dynamic HDR and HDCP 2.2 compliance. Optimised for gamers and...

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

Frequently Bought Together

Experience 8K visuals with the UGREEN DP114 8K DisplayPort Braided Cable. Designed for high-performance gaming, professional displays, and immersive multimedia setups, this premium DisplayPort cable ensures crisp, detailed visuals with Dynamic HDR and HDCP 2.2 compliance.

Optimised for gamers and content creators, the UGREEN 8K DisplayPort cable delivers a total bandwidth of 32.4Gbps, enabling high refresh rates such as 8K@60Hz, 4K@144Hz, and 2K@240Hz, reducing lag and motion blur for a smoother experience. Its retaining clip lock mechanism secures the connection, preventing accidental disconnections during intense gaming or professional tasks.

Built with durability in mind, the cable features a braided sheath for added strength and longevity. The tin-plated copper core and multiple shielding layers minimise signal interference, ensuring stable and high-fidelity transmission. Whether you're extending your display for multitasking, setting up an advanced multi-monitor workstation with ATI Eyefinity, or connecting a high-end gaming rig, the UGREEN DP114 8K DisplayPort Braided Cable guarantees top-tier performance and reliability.

FEATURES:

  • Supports 8K@60Hz, 4K@144Hz, and 2K@240Hz
  • 32.4Gbps high bandwidth
  • Dynamic HDR & HDCP 2.2 support
  • Optimised for gaming with high refresh rates
  • Braided sheath for durability
  • Retaining clip lock design prevents accidental disconnections
  • Multi-layer shielding reduces signal interference for stable transmission
  • Supports multi-screen setups: Compatible with mirror mode, extend mode, and ATI Eyefinity multi-split screen mode

SPECIFICATIONS:

  • Wire Gauge: 28AWG
  • Wire Core: Tin-plated copper
  • Outer Diameter (OD): 7.3mm
  • Total Bandwidth: 32.4Gbps
  • Resolution Support: 1080P@240Hz, 2K@165Hz, 4K@144Hz, 8K@60Hz
  • HDR & HDCP Support: Compatible with 3D, HDR, and HDCP 2.2
  • Modes Supported: Mirror mode, extend mode, and ATI Eyefinity multi-screen mode
  • Connector Type: DisplayPort 1.4 Male to Male
  • Locking Mechanism: Retaining clip lock
  • Material: ABS case with braided sheath for durability
  • Shielding: Aluminium foil + ground wire + metal braided
  • Cable Length: 3m
  • Colour: Black

WHAT’S IN THE BOX:

  • UGREEN DP114 8K DisplayPort Male to Male Braided Cable 3m x1
Brand Ugreen
Colour Black
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

-32%
UGREEN VG101 VGA Male to Male Cable 3M
Ugreen

UGREEN VG101 VGA Male to Male Cable 3M

R 129.00 R 189.00

Save R 60.00

In Stock

-33%
UGREEN HD101-10170 HDMI 4K Ferrite Core Cable Male to Male 10m - Black
Ugreen

UGREEN HD101-10170 HDMI 4K Ferrite Core Cable Male to Male 10m - Black

R 399.00 R 599.00

Save R 200.00

In Stock

-35%
UGREEN Mini DisplayPort Male to 4K@30Hz HDMI Cable 1.5m - Black
Ugreen

UGREEN Mini DisplayPort Male to 4K@30Hz HDMI Cable 1.5m - Black

R 189.00 R 289.00

Save R 100.00

In Stock

-35%
UGREEN HD104-10109 HDMI 4K Cable Male to Male Black 5m - Black
Ugreen

UGREEN HD104-10109 HDMI 4K Cable Male to Male Black 5m - Black

R 129.00 R 199.00

Save R 70.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!