Redragon UCAL K673 PRO Mechanical Wireless Gaming Keyboard - Black - Redragon | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Redragon

Redragon UCAL K673 PRO Mechanical Wireless Gaming Keyboard - Black

SKU: RD-K673WB-RGB-PRO
R 709.00 R 899.00
You save R 190.00 (21%)
Out of Stock
You save R 190.00 (21% off)

The Redragon UCAL K673 PRO redefines compact gaming keyboards by blending a 65% layout with the functionality of a full row of dedicated function keys. This innovative 81-key design eliminates the traditional number pad to give gamers and professionals more room for precise mouse movement, while...

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

Frequently Bought Together

The Redragon UCAL K673 PRO redefines compact gaming keyboards by blending a 65% layout with the functionality of a full row of dedicated function keys. This innovative 81-key design eliminates the traditional number pad to give gamers and professionals more room for precise mouse movement, while still offering quick access to essential shortcuts without relying on Fn combos. Finished in a visually striking deep blue and white PBT keycap design, it brings a refined, modern edge to any setup—ideal for minimalists who don’t want to sacrifice performance or aesthetics.

Experience unparalleled convenience with Redragon’s tri-mode connection technology, offering USB Type-C wired, Bluetooth 3.0/5.0, and 2.4GHz wireless connectivity options. Whether you're gaming on your PC, switching to a laptop, or need a reliable wireless option for work, the K673 PRO transitions effortlessly between devices. A cleverly integrated USB receiver hub keeps your 2.4GHz dongle safe and accessible, while the built-in 3000mAh battery ensures extended wireless usage, making it an ideal companion for travel, hybrid work, or LAN parties.

This keyboard isn’t just about speed—it’s about comfort and clarity too. The K673 PRO features a custom gasket-mounted structure, dual 3.5mm sound-absorbing foams, and precision-sealed casing to deliver a clean, crisp keystroke sound with no rattling or resonance. Combined with hot-swappable linear red mechanical switches, the typing and gaming experience feels incredibly responsive and smooth, while also allowing for easy switch replacement with both 3-pin and 5-pin options.

A multi-function control knob on the top right offers intuitive access to volume, media playback, and backlight brightness, streamlining your daily workflow or in-game adjustments without interrupting your focus. Lightweight, portable, and height-adjustable, the Redragon K673 PRO is built for users who demand versatility, style, and performance in a single, compact form. Whether you're deep into competitive gaming or focused on productivity, this mechanical wireless keyboard offers everything you need—and nothing you don’t.

FEATURES:

  • 81 keys 75% wireless keyboard
  • Hot-swappable linear red mechanical switches
  • Redragon gasket design with noise reducing foam
  • Dedicated knob control for versatility
  • 3000mAh battery for all day usage
  • 3 connection modes, USB Type-C, Bluetooth 3.0/5.0, and 2.4GHz wireless
  • Ultra-portable compact design

SPECIFICATIONS:

  • Connectivity: 2.4GHz, Bluetooth, USB Type-C
  • Switches: Linear Red Switch
  • Matrix: 81 Keys
  • Layout: US QWERTY
  • Height Adjustable: Yes
  • Keyboard Size: 10.4× 33.5 cm
  • Item Weight: 1204 g

WHAT;S IN THE BOX:

  • Redragon UCAL K673 PRO Mechanical Wireless Gaming Keyboard - Black x1
  • Detachable USB Type-C Cable x1
  • Keycap & Switch Puller x1
  • Spare Switches
  • User Manual x1
Brand Redragon
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 18 Months
0.0
0 reviews
Login to Review

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

Related Products

-19%
Keychron Q6 HE QMK Full-size Wireless Custom Mechanical Keyboard (Nebula Switch) – Carbon Black
Keychron

Keychron Q6 HE QMK Full-size Wireless Custom Mechanical Keyboard (Nebula Switch) – Carbon Black

R 4 059.00 R 4 999.00

Save R 940.00

In Stock

-20%
Redragon K617 FIZZ 60% Wired RGB Gaming Keyboard - Black
Redragon

Redragon K617 FIZZ 60% Wired RGB Gaming Keyboard - Black

R 369.00 R 459.00

Save R 90.00

In Stock

-23%
Redragon K673 UCAL 75% Magnetic Ultramag Switch Wired Keyboard - Black
Redragon

Redragon K673 UCAL 75% Magnetic Ultramag Switch Wired Keyboard - Black

R 649.00 R 839.00

Save R 190.00

In Stock

-30%
Redragon K521 RGB NETHERBANE 104-Key Membrane Gaming Keyboard
Redragon

Redragon K521 RGB NETHERBANE 104-Key Membrane Gaming Keyboard

R 139.00 R 199.00

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