Menu
Your Cart

LAPTOP BATTERY ORIGINAL HP PK03XL

LAPTOP BATTERY ORIGINAL HP PK03XL
-8 %
LAPTOP BATTERY ORIGINAL HP PK03XL
  • Price: TK 4,900/-
  • special price: TK 4,500/-
  • Stock: In Stock
  • Model: PK03XL
TK 4,500/-
TK 4,900/-
Ex Tax: TK 4,500/-

Key Features

    • Model: HP PK03XL / HSTNN‑DB6S / TPN‑Q157 / 788237‑2C1 / 788237‑2C2 / 789116‑005
    • Battery Type: Lithium-Ion
    • Voltage: 11.4 V
    • Capacity: 56 Wh
    • Compatibility: HP Spectre x360 13‑4000 series G1 & G2; Spectre Pro x360 13
    • Warranty: 6 Months
Specification
General Feature
BrandHP
ModelPK03XL / HSTNN‑DB6S / TPN‑Q157 / 788237‑2C1/2C2 / 789116‑005
Power
Battery TypeLi‑Ion
Battery Capacity56 Wh (~4900–5000 mAh)
Battery Cells3‑Cell
Physical Attributes
ColorBlack
Compatible WithHP Spectre x360 13‑4000 G1/G2 & Spectre Pro x360 13 series
Warranty Information
Warranty6 Months
Description

Reliable OEM Power: HP PK03XL Battery for Spectre x360 13 G1/G2 Series

The HP PK03XL (also listed as HSTNN‑DB6S, TPN‑Q157, 788237‑2C1/2C2, 789116‑005) is a genuine OEM-grade lithium-ion replacement battery designed for HP Spectre x360 13 G1 & G2 (13‑4000 series) and Spectre Pro x360. It delivers a consistent 11.4 V output with a robust 56 Wh capacity (~4900–5000 mAh), providing reliable performance for everyday productivity and entertainment.

Built with premium Li‑ion/polymer cells, this battery includes protective circuitry against overcharging, overheating, and short-circuiting. It meets OEM safety standards (CE, RoHS, FCC) and typically supports 300–500 charge cycles, backed by a 6-month local warranty from Dear IT Solution.




Buy from Dear IT Solution – Genuine Quality, Excellent Support & Fast Delivery

Choose Dear IT Solution for original or OEM HP batteries like the PK03XL. Our units are quality tested, shipped with secure packaging, and covered by a 12-month warranty. Benefit from prompt delivery across Bangladesh, expert customer care, and assured authenticity. Get your Spectre’s battery performance back to peak condition.

Review

Write a review

Note: HTML is not translated!
Bad Good
Critial Path: Hello world!
Hello world!
/** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};