Hiksemi City Series E100 2TB 2.5" SATAIII SSD - HIKSEMI | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
HIKSEMI

Hiksemi City Series E100 2TB 2.5" SATAIII SSD

SKU: HS-SSD-E100-2048G
R 5 419.00 R 6 949.00
You save R 1 530.00 (22%)
In Stock
You save R 1 530.00 (22% off)

Unlock reliable performance and faster data access with the Hiksemi City Series E100 2TB 2.5" SATAIII SSD, designed to breathe new life into your desktop or laptop. Backed by years of development in flash memory and storage optimisation, this SSD offers seamless startup times, improved system...

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

Unlock reliable performance and faster data access with the Hiksemi City Series E100 2TB 2.5" SATAIII SSD, designed to breathe new life into your desktop or laptop. Backed by years of development in flash memory and storage optimisation, this SSD offers seamless startup times, improved system responsiveness, and ultra-stable operation for daily computing needs. Whether you're upgrading an older system or building a new one, the E100 ensures efficient data transfer and application loading, transforming your overall computing experience.

At its core, the E100 SSD is powered by advanced 3D NAND flash technology, enabling greater storage density and long-term stability. With impressive sequential read and write speeds of up to 560MB/s and 520MB/s, respectively, along with IOPS up to 72K, this drive ensures rapid multitasking, quick boot-ups, and fast file transfers. It features SATA III 6Gb/s interface compatibility for wide-ranging support across desktops, laptops, and even gaming consoles like the PS4. With a total write endurance (TBW) of 960TB and a mean time between failures (MTBF) of 2 million hours, the E100 is built for longevity and reliability.

Engineered for durability, the Hiksemi E100 boasts a vibration-resistant, chip-based structure with no moving parts, enhancing data security and reducing failure risk in portable or active environments. Despite its lightweight design at just ≤ 36.8g, the E100 doesn't compromise on protection, offering TRIM support, low power consumption of only 3.5W max, and robust operating temperatures ranging from 0°C to 70°C. This makes it a dependable solution for mobile professionals, everyday users, or content creators looking for consistent performance without excessive heat or energy drain.

Whether you're editing high-resolution videos, loading game files, or simply upgrading from a traditional hard drive, the Hiksemi E100 2TB SSD is a smart investment for enhanced storage performance and data security. With universal compatibility and easy installation in any 2.5" SATA-equipped system, it offers a powerful, cost-effective solution for improving computing speed and extending the life of your device. Elevate your system’s responsiveness and efficiency today with a drive designed for speed, stability, and endurance.

FEATURES:

  • High R/W Speed SATA interface Max. Read speed up to 560 MB/s
  • 3D NAND technology helps to develop higher capacity, performance, and stability
  • Vibration resistant structure - Free of mechanical structure, electronic chip control for better data safety
  • Widely compatible with computers, laptops, PS4, etc
  • 2TB Capacity for all your storage needs

SPECIFICATIONS:

  • Form Factor: 2.5 inch
  • Capacity: 2048GB
  • Max. Seq. Read (MB/S): 560MB/s
  • Max. Seq. Write (MB/S): 520MB/s
  • Max. Ran. 4K read IOPS: 87K
  • Max. Ran. 4K write IOPS: 72K
  • Max. Power Consumption: 3.5W
  • TBW: 960TB
  • Storage Medium: 3D NAND
  • Interface: SATA III 6Gb/s
  • MTBF: 2,000,000 hours
  • Operation temperature: 0-70℃
  • Storage temperature: -40 °C to 85 °C
  • TRIM Support: Yes
  • Product Weight: ≤ 36.8 g
  • Warranty: 36 months

WHAT'S IN THE BOX:

  • Hiksemi City Series E100 2TB 2.5" SATAIII SSD - Black x1
Brand HIKSEMI
Colour Black/Blue
Form Factor -
Interface -
Capacity 2TB
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 36 Months
0.0
0 reviews
Login to Review

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

Related Products

-16%
Crucial BX500 500GB 2.5" SATA SSD
Crucial

Crucial BX500 500GB 2.5" SATA SSD

R 1 299.00 R 1 549.00

Save R 250.00

Out of Stock

-13%
Crucial BX500 240GB 2.5" SATA SSD
Crucial

Crucial BX500 240GB 2.5" SATA SSD

R 899.00 R 1 029.00

Save R 130.00

In Stock

-14%
HIKSEMI Wave(P) 512GB Gen3 M.2 NVMe 3D NAND SSD
HIKSEMI

HIKSEMI Wave(P) 512GB Gen3 M.2 NVMe 3D NAND SSD

R 2 169.00 R 2 519.00

Save R 350.00

In Stock

-51%
Patriot Burst Elite 240GB 2.5" SATA III SSD
Patriot

Patriot Burst Elite 240GB 2.5" SATA III SSD

R 649.00 R 1 329.00

Save R 680.00

Out of 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!