Menu
Your Cart

HP 120W AC Adapter Power Charger

HP 120W AC Adapter Power Charger
-13 %
HP 120W AC Adapter Power Charger
  • Price: TK 4,000/-
  • special price: TK 3,500/-
  • Stock: In Stock
  • Model: HSTNN-LA25
  • MPN: 677762-001
TK 3,500/-
TK 4,000/-
Ex Tax: TK 3,500/-

Key Features

    • Adapter for HP Product
    • Type : Big Port 19.5V
    • Watt: 6.15A 120W
    • Input Voltage: 100 ~ 240V 50 ~ 60Hz
    • Warranty: 1 Year
    Specification
    General Feature
    For BrandHP
    ModelHSTNN-LA25
    TypeBig Port 19.5V
    Technical Info
    Wattage (W)120W
    Input Voltage100 ~ 240V 50 ~ 60Hz
    Output Voltage19.5V 6.15A
    Warranty Information
    Warranty1 Year
    Description

    Reliable Charging Power with the HP 120W AC Adapter Power Charger

    The HP 120W AC Adapter Power Charger is engineered to deliver consistent and efficient power for your HP laptop. With an AC Input Voltage of 100 ~ 240V (50 ~ 60Hz) and DC Output Voltage of 19.5V 6.15A, this charger ensures smooth energy delivery and optimal laptop performance, whether you're working, streaming, or multitasking. Designed for heavy-duty use, its 120W power output is perfect for power-hungry systems that demand stable current over long periods.

    This high-performance adapter is 100% compatible with a wide range of HP models and part numbers, including 677762-002, 644699-001, 645156-001, 463556-001, 391174-001, and more. The robust build quality, high-grade internal components, and strong insulation guarantee safety against over-voltage, over-current, and short circuits. Whether you need a reliable replacement or an additional power solution, this adapter offers both reliability and longevity. Plus, it comes backed with a 1-year warranty for peace of mind.




    Buy the HP 120W AC Adapter from Dear IT Solution — Trusted Quality & Service

    At Dear IT Solution, we offer only high-quality and performance-tested laptop chargers that meet your daily demands. Purchasing the HP 120W AC Adapter Power Charger from our store means you're choosing dependability, compatibility, and after-sales support you can trust. We understand how crucial it is to keep your laptop running without interruption, and that’s why we stock only products that are tested for quality and backed by warranty.

    Shop online at Dear IT Solution or visit our physical store to get the best price in Bangladesh on original HP adapters. Our team ensures you receive the right product for your model, along with guidance, installation support, and quick delivery. Make the smart choice—power your device with confidence with Dear IT Solution.


    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};