.aplus-v2 .aplus-content-wrapper {
position: relative;
overflow: hidden;
}
.aplus-v2 .container-with-background-image {
width: 100%;
height: 100%;
background-repeat: no-repeat;
background-size: cover;
}
function logShoppableMetrics(moduleName, showsAddToCart) {
if (window.ue && window.ue.count) {
window.ue.count(“aplus:shoppable:” + moduleName + “:addToCart”, showsAddToCart ? 1 : 0);
}
}
From the manufacturer
/**
* Common event handler for click and keydown events.
* @param {Event} event – The event object.
* @param {Function} handleClickOrEnter – Function to handle click or Enter key events.
* @param {Function} handleEsc – Function to handle Esc key events.
*/
// [TODO][AplusMantle-8064] Create common event handler util(key events, click events) in AplusModuleResources
function handleClickAndKeyEvents(event, handleClickOrEnterOrSpace) {
const ENTER_KEY_CODE = 13;
const ESCAPE_KEY_CODE = 27;
const SPACE_KEY_CODE = 32;
const isClick = event.type === ‘click’;
const isKeydown = event.type === ‘keydown’;
const isEnter = isKeydown && event.keyCode === ENTER_KEY_CODE;
const isSpace = isKeydown && event.keyCode === SPACE_KEY_CODE;
const isEsc = isKeydown && event.keyCode === ESCAPE_KEY_CODE;
if (isClick || isEnter || isSpace) {
handleClickOrEnterOrSpace();
} else if (isEsc) {
handleEsc(event);
}
}
/**
* Function to handle esc key event.
* @param {Event} event – The event object.
*/
function handleEsc(event) {
event.target.blur() // force remove focus
}
-
The Sound of Esports
Razer BlackShark V2 X
Turn pro with the Razer BlackShark V2 X, the definitve esports gaming headset
-
High-End Audio
Razer TriForce 50mm Drivers
Cutting-edge proprietary design for brighter, clearer audio with richer highs and more powerful lows
-
Advance Capture & Control
Razer HyperClear Cardioid Mic
Improved voice pickup pattern rejects more noise from the back and sides
-
Uninterrupted Focus
Advanced Passive Noise Cancellation
Shut noise out with special closed earcups and plush cushions for greater sound isolation
-
Long-Lasting Comfort
Lightweight Design with Memory Foam Ear Cushions
At 240g, the headset features thicker headband padding and leatherette with memory foam ear cushions
Memory Foam Ear Cushions
Ideal comfort and sound isolation throughout gaming marathons.
” data-position=”triggerHorizontal”>
6mm Cardioid Mic
An improved pickup pattern ensures more voice and less noise as it tapers off towards the mic’s back and sides, with the sweet spot easily placed at your mouth because of the mic’s bendable design.
” data-position=”triggerHorizontal”>
3.5mm Jack
The headset works with PC, Mac, PS4, Xbox One, Nintendo Switch and mobile devices, allowing you to enjoy unfair audio advantage across almost every platform.
” data-position=”triggerHorizontal”>
240g Lightweight Design
Engineered with a lightweight form factor for a near-weightless feel on your head.
” data-position=”triggerHorizontal”>
Thicker Headband Padding
Relieves pressure on your head to prevent strain.
” data-position=”triggerHorizontal”>
Convenient Audio Controls
The volume control knob and microphone mute button is easily accessed on the left earcup for convenient control.
” data-position=”triggerHorizontal”>
-
Gear Up
#1 SELLING PC GAMING PERIPHERALS BRAND IN THE U.S. — Source: Circana, Retail Tracking Service, U.S., Dollar Sales, Gaming Designed Mice, Keyboards, and PC Headsets, Jan. 2019- Dec. 2023 combined
-
Razer Kitty Ears V2
Create the purrfect gaming look—Designed for a universal fit, pounce into the spotlight with these durable and lightweight clip-on Kitty ears that will unleash the meow factor.
-
Razer Gigantus V2 Soft Gaming Mouse Mat
Go big with the Gigantus V2’s textured micro-weave cloth surface. Up your game with fluid swipes and pixel-precise aim, while the soft mat cushions your wrist as you take care of the competition.
-
Razer Base Station V2 Chroma
Add more functionality and flair to your gaming setup with a headset stand USB hub that includes two USB 3.1 SuperSpeed ports and a 3.5 mm combo port.
P.now(“premium-aplus-13-carousel-3”).execute(“init-pagination-carousel”, function(init) {
if (init) {
return;
}
P.register(“premium-aplus-13-carousel-3”, function() {
return function() {
P.when(“A”, “jQuery”, “a-carousel-framework”, “ready”).execute(“paginate-carousel”, function (A, $, framework) {
const ENTER_KEY_CODE = 13;
const ESCAPE_KEY_CODE = 27;
const LEFT_ARROW_KEY = 37;
const RIGHT_ARROW_KEY = 39;
const HOME_KEY = 36;
const END_KEY = 35;
var moduleId = “3”;
var carouselName = “premium-aplus-13-carousel-3”;
var paginationAction = “aplus-pagination-dot-action-” + moduleId + “-” + carouselName;
var paginationGroup = “#aplus-pagination-group-” + moduleId + “-” + carouselName;
/* If the carousel goes to a new page */
A.on(“a:carousel:”+carouselName+”:change:pageNumber”, function (data) {
A.$(paginationGroup+” .carousel-slider-circle”).removeClass(“aplus-carousel-active”).attr(‘aria-selected’, ‘false’).attr(‘tabindex’, -1)
.eq(data.newValue – 1).addClass(“aplus-carousel-active”).attr(‘aria-selected’, ‘true’).attr(‘tabindex’, 0);
});
function syncPaginationDotsWithCarouselPages(numPages) {
const parentElement = document.querySelector(paginationGroup);
if (parentElement && parentElement.children) {
const children = parentElement.children;
for (let i = 0; i = numPages) {
// If number of dots > num of pages, we should hide other dots
children[i].classList.add(‘aplus-pagination-dot–display-none’);
} else if (children[i].classList.contains(‘aplus-pagination-dot–display-none’)) {
// Reset display of dots if it was hidden before
children[i].classList.remove(‘aplus-pagination-dot–display-none’);
}
}
}
}
framework.onInit(carouselName, function (carousel) {
try {
var totalPages = carousel.getAttr(‘totalPages’);
syncPaginationDotsWithCarouselPages(totalPages);
/* Resize event handler to re-calculate the pagination dots count based on orientation */
window.addEventListener(‘resize’, function() {
carousel.resize();
totalPages = carousel.getAttr(‘totalPages’);
syncPaginationDotsWithCarouselPages(totalPages);
});
A.declarative(paginationAction, ‘click keydown’, function(event){
var isClick = event.type === ‘click’;
var isKeydown = event.type === ‘keydown’;
var isEnter = isKeydown && event.$event.keyCode === ENTER_KEY_CODE;
var isEsc = isKeydown && event.$event.keyCode === ESCAPE_KEY_CODE;
var isLeftArrow = isKeydown && event.$event.keyCode === LEFT_ARROW_KEY;
var isRightArrow = isKeydown && event.$event.keyCode === RIGHT_ARROW_KEY;
var isHome = isKeydown && event.$event.keyCode === HOME_KEY;
var isEnd = isKeydown && event.$event.keyCode === END_KEY;
if (isClick || isEnter) {
var data = event.data;
carousel.gotoPage(data.page);
} else if (isEsc) {
event.$target.blur();
} else if (isLeftArrow || isRightArrow || isHome || isEnd) {
event.$event.preventDefault();
const dots = A.$(paginationGroup + ” .carousel-slider-circle”);
const currentIndex = dots.index(event.$target);
let nextIndex;
if (isLeftArrow) {
nextIndex = currentIndex > 0 ? currentIndex – 1 : dots.length – 1;
} else if (isRightArrow) {
nextIndex = currentIndex < dots.length – 1 ? currentIndex + 1 : 0;
} else if (isHome) {
nextIndex = 0;
} else if (isEnd) {
nextIndex = dots.length – 1;
}
dots.eq(nextIndex).focus();
carousel.gotoPage(nextIndex + 1);
}
});
} catch (e) {
P.log('Failed to init ' + carouselName + '. Error: ' + e.message, 'FATAL', 'AplusModuleResources');
}
});
});
}
});
});
|
Add to Cart
logShoppableMetrics(“premium-module-5-comparison-table-scroller”, true) |
Add to Cart
logShoppableMetrics(“premium-module-5-comparison-table-scroller”, true) |
Add to Cart
logShoppableMetrics(“premium-module-5-comparison-table-scroller”, true) |
Add to Cart
logShoppableMetrics(“premium-module-5-comparison-table-scroller”, true) |
Add to Cart
logShoppableMetrics(“premium-module-5-comparison-table-scroller”, true) |
Add to Cart
logShoppableMetrics(“premium-module-5-comparison-table-scroller”, true) |
Add to Cart
logShoppableMetrics(“premium-module-5-comparison-table-scroller”, true) |
|
|---|---|---|---|---|---|---|---|
|
Customer Reviews
|
.aplus-v2 .aplus-review-right-padding { padding-right: 0.1rem; }
4.4 out of 5 stars 19,186
|
.aplus-v2 .aplus-review-right-padding { padding-right: 0.1rem; }
3.8 out of 5 stars 2,019
|
.aplus-v2 .aplus-review-right-padding { padding-right: 0.1rem; }
4.0 out of 5 stars 387
|
.aplus-v2 .aplus-review-right-padding { padding-right: 0.1rem; }
4.4 out of 5 stars 224
|
.aplus-v2 .aplus-review-right-padding { padding-right: 0.1rem; }
4.1 out of 5 stars 1,148
|
.aplus-v2 .aplus-review-right-padding { padding-right: 0.1rem; }
4.4 out of 5 stars 2,322
|
.aplus-v2 .aplus-review-right-padding { padding-right: 0.1rem; }
4.4 out of 5 stars 1,264
|
|
Price
|
$39.99$39.99 |
$129.99$129.99 |
$134.99$134.99 |
$119.08$119.08 |
$79.99$79.99 |
$29.99$29.99 |
$29.99$29.99 |
|
Connection
|
3.5mm |
Wireless 2.4 GHz / BT 5.2 |
Wireless 2.4 GHz / BT 5.2 |
Wireless 2.4 GHz / BT 5.2 |
Wireless 2.4GHz / BT 5.2 / USB |
3.5 mm |
3.5 mm |
|
Audio Driver
|
TriForce 50mm Drivers |
TriForce Titanium 50 mm |
TriForce Titanium 50 mm |
TriForce Titanium 50 mm |
TriForce Titanium 50 mm |
TriForce 50 mm |
TriForce 50 mm |
|
Surround Sound
|
7.1 Surround Sound |
THX Spatial Audio |
Spatial Audio w/ Windows Sonic |
Tempest 3D Audio |
THX Spatial Audio |
Windows Sonic |
7.1 Surround Sound |
|
Mic
|
HyperClear Cardioid Mic |
Detachable Super Wideband Mic |
Detachable Super Wideband Mic |
Detachable Super Wideband Mic |
Bendable Super Wideband Mic |
Bendable Cardioid Mic |
Bendable Cardioid Mic |
|
Ear Cushions
|
Breathable Memory Foam |
Detachable Super Wideband Mic |
Breathable Memory Foam |
Breathable Memory Foam |
Breathable Memory Foam |
Hybrid PU and Cloth Foam |
Hybrid PU and Cloth Foam |
|
Battery Life
|
– |
Up to 70 hours |
48 to 70 hours |
48 to 70 hours |
Up to 70 hours |
– |
– |
|
Weight
|
240g |
320 g |
320 g |
320 g |
280 g |
260 g |
260 g |
|
Compatibility
|
PS5, PC, Switch, 3.5mm |
PC, PS, Switch, Mobile |
Xbox, PS5, PC, Switch, Mobile |
PS5, PC, Switch, Mobile |
PC, PS, Switch, Mobile |
Xbox, PS5, PC, Switch, 3.5 mm |
PS5, PC, Switch, 3.5 mm |
-
What kind of mic does the Razer BlackShark V2 X have?
The Razer BlackShark V2 X comes with a bendable Razer HyperClear Cardioid Mic – tuned to have a more focused voice pick-up area.
-
Does the BlackShark V2 X offer surround sound?
“Yes, the Razer BlackShark V2 X features 7.1 Surround Sound* for added immersion across music, movies, and games.
*Only available on Windows 10 64bit ”
-
Is the Razer BlackShark V2 X powered by Razer Chroma?
No, the Razer BlackShark V2 X does not feature Razer Chroma RGB Lighting.
-
What color variants are available for the Razer BlackShark V2 X?
The Razer BlackShark V2 X is available in Classic Black.
-
What are the connectivity options available for the Razer BlackShark V2 X?
The Razer BlackShark V2 X can be connected through its 3.5mm audio jack.
Product Description
Embrace the sound of esports with the Razer BlackShark V2 X-a triple threat of amazing audio, superior mic clarity and supreme sound isolation. With our best headset mic and audio drivers packed into a unique aviation-style headset, your competitive play is destined to turn pro.
#productDescription h3 {
margin: 0.75em 0px 0.375em -1px;
}





















Reviews
There are no reviews yet.