Corsair HS80 RGB USB Wired Over-Ear Gaming Headset — White - Corsair | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Corsair

Corsair HS80 RGB USB Wired Over-Ear Gaming Headset — White

SKU: CA-9011238-AP
R 2 493.04
Available on Backorder

Precision audio engineered for the competitive edge | Dolby Audio surround sound for tactical awareness | Customisable RGB lighting via iCUE | Lightweight comfort for extended sessions

This item is on backorder — new stock is expected around 16 Sep 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

Precision audio engineered for the competitive edge | Dolby Audio surround sound for tactical awareness | Customisable RGB lighting via iCUE | Lightweight comfort for extended sessions

Quick Specs

  • Experience expansive, detailed audio through 50 mm drivers with a 20 Hz–40 kHz frequency response.
  • Dominate the competition with Dolby Audio surround sound delivering accurate positional audio.
  • Communicate clearly with a detachable omni-directional boom microphone built for in-game comms.
  • Customise RGB lighting on the earcups to match your setup via Corsair iCUE software.
  • Game in comfort for hours with a lightweight 371 g design and a reliable USB wired connection.

Command Every Session with the Corsair HS80 RGB USB Gaming Headset

The Corsair HS80 RGB USB Wired Gaming Headset is built for the discerning South African gamer who refuses to compromise on audio quality, comfort, or style. In sleek white, it pairs precision engineering with a clean aesthetic — so whether you're grinding ranked matches or streaming for an audience, the HS80 RGB makes a statement both in sound and appearance.

Precision Audio That Puts You Inside the Game

Tired of missing critical in-game audio cues because your headset just can't keep up? The HS80 RGB's 50 mm custom-tuned drivers reproduce sound across a 20 Hz–40 kHz frequency range, delivering the full spectrum from earth-shaking bass to crisp high-frequency detail. Pair that with Dolby Audio surround sound and you get accurate positional audio — hear footsteps, gunfire, and environmental cues exactly where they're coming from, giving you the tactical edge when it matters most.

Clear Communication, Zero Compromise

Clutch calls require clarity. The detachable omni-directional boom microphone covers a 100 Hz–10 kHz frequency response, capturing your voice with precision so your squad hears every callout without distortion or drop-out. When you're done, simply detach the mic — the HS80 RGB transitions effortlessly from gaming headset to clean, everyday headphones.

Built for the Long Haul — With Style to Match

Extended gaming sessions demand a headset that goes the distance. At just 371 g, the HS80 RGB sits comfortably through marathon sessions without fatigue. The USB wired connection ensures a stable, latency-free audio signal on PC, while the 1.8 m cable gives you the flexibility to game without feeling tethered. RGB lighting on the earcups — fully customisable through Corsair iCUE software — lets you synchronise your headset with the rest of your Corsair ecosystem, creating a setup that's as visually striking as it is capable.

Features

  • 50 mm drivers with a 20 Hz–40 kHz frequency response for expansive, detailed audio reproduction.
  • Dolby Audio surround sound for accurate positional audio awareness in competitive gaming.
  • Detachable omni-directional boom microphone with a 100 Hz–10 kHz frequency response for clear in-game communication.
  • RGB lighting on the earcups, fully customisable via Corsair iCUE software.
  • USB wired connection for reliable, latency-free audio on PC.
  • 1.8 m cable for flexible desktop setups without excess cable clutter.
  • Lightweight 371 g design engineered for extended wear during long gaming sessions.
  • Corsair iCUE software integration for lighting control and full ecosystem management.

Specifications

  • Connection: USB Wired
  • Driver Size: 50 mm
  • Surround Sound: Dolby Audio
  • Microphone Type: Detachable Boom
  • Active Noise Cancellation: No
  • Platform Compatibility: PC
  • RGB Lighting: Yes
  • Colour: White
  • Warranty: 24 months
  • Product Weight: 371g

What's in the Box

  • CorsairHS80 RGB USB Wired Over-Ear Gaming Headset — White x1

Why Corsair

Corsair has spent decades engineering high-performance gaming peripherals trusted by competitive players and enthusiasts worldwide. Every product is built to exacting standards — from precision audio components to robust software ecosystems — so South African gamers can rely on gear that keeps pace with their ambition, session after session.

Brand Corsair
Colour White
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

// 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!