Corsair HS35 v3 Wireless Gaming Headset - White | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support

Corsair HS35 v3 Wireless Gaming Headset - White

SKU: CA-9011402-WW
R 1 973.94
Out of Stock

Wireless freedom across every platform | Dolby Atmos Spatial Audio for tactical immersion | Up to 30 hours of battery life | Lightweight comfort for long sessions

Get Notified When Available

Enter your email and we'll notify you when this item is back in stock.

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

Wireless freedom across every platform | Dolby Atmos Spatial Audio for tactical immersion | Up to 30 hours of battery life | Lightweight comfort for long sessions

Quick Specs

  • Dominate every session with immersive Dolby Atmos Spatial Audio for precise positional awareness.
  • Connect seamlessly via tri-mode wireless — 2.4GHz, Bluetooth, or wired — across PC, Mac, PS4, PS5, Mobile, and Nintendo Switch.
  • Play marathon sessions confidently with up to 30 hours of battery life on a single charge.
  • Hear and be heard clearly with a detachable boom microphone that you can remove when you don't need it.
  • Experience fatigue-free gaming with 50mm neodymium drivers and an adjustable floating headband design.

Untether Your Game with the Corsair HS35 V3 Wireless

The Corsair HS35 V3 Wireless Gaming Headset delivers the freedom, clarity, and endurance the discerning South African gamer demands. Built for those who refuse to be held back by cables or platform limits, it combines tri-mode connectivity, Dolby Atmos Spatial Audio, and a lightweight 250g frame into a headset designed for real sessions — the kind that run long and demand every edge.

Spatial Audio That Puts You Inside the Action

Powered by Dolby Atmos Spatial Audio, the HS35 V3 Wireless transforms your soundscape into a three-dimensional competitive advantage. Pinpoint enemy footsteps, incoming fire, and environmental cues with a precision that flat stereo simply cannot match. With 50mm neodymium drivers delivering a full 20Hz–20kHz frequency response, every explosion, whisper, and musical score is reproduced with depth and clarity. Note: Dolby Atmos is available on PC and requires the Dolby Access app.

One Headset, Every Platform — No Compromises

Tired of swapping headsets between your PC, PlayStation, and phone? The HS35 V3 Wireless solves that with tri-mode connectivity: ultra-low-latency 2.4GHz wireless for PC gaming, Bluetooth for mobile and casual listening, and a 1.8m wired cable for consoles and any device in between. Whether you're grinding ranked on PS5, taking a call on your phone, or switching to Mac, this headset moves with you without missing a beat.

Built to Last the Session — and the Weekend

With up to 30 hours of battery life at 50% volume, the HS35 V3 Wireless won't tap out before you do. The adjustable floating headband distributes weight evenly so the 250g frame never becomes a burden across extended play. When you need to communicate, clip in the detachable boom microphone for clear voice pickup; when you'd rather game quietly, remove it entirely and keep the clean aesthetic. A wireless range of up to 60ft means you're free to move around without losing your connection.

Features

  • Dolby Atmos Spatial Audio for immersive, three-dimensional positional sound (PC only; requires Dolby Access app).
  • Tri-mode connectivity: 2.4GHz wireless, Bluetooth, and wired (1.8m cable) for maximum platform flexibility.
  • Compatible with PC, Mac, PS4, PS5, Mobile, and Nintendo Switch.
  • Up to 30 hours of battery life (at 50% volume) for marathon gaming sessions.
  • 50mm neodymium drivers with a 20Hz–20kHz frequency response for full-spectrum audio.
  • Detachable omnidirectional boom microphone — attach for comms, remove for a cleaner look.
  • Adjustable floating headband design for enhanced long-session comfort.
  • Wireless range of up to 60ft (approximately 18m).
  • Lightweight build at 250g for reduced fatigue during extended wear.

Specifications

  • Connection: Multi-mode
  • Driver Size: 50 mm
  • Surround Sound: Dolby Atmos Spatial Audio
  • Microphone Type: Detachable Boom
  • Battery Life: 30 hours
  • Active Noise Cancellation: No
  • Platform Compatibility: PC, Mac, PS4, PS5, Mobile, Nintendo Switch
  • RGB Lighting: No
  • Colour: White
  • Warranty: 24 months
  • Product Weight: 250g

What's in the Box

  • Corsair HS35 v3 Wireless Gaming Headset - White x1

Why Corsair

Corsair has spent decades engineering performance peripherals trusted by gamers and creators worldwide. Every product in the Corsair lineup is built around one principle: give players the tools to perform at their best. The HS35 V3 Wireless is a testament to that commitment — delivering premium wireless audio and multi-platform versatility at a level South African gamers can rely on, session after session.

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!