Menu
Your Cart

Haier AB50FH4QAA 4.0 Ton Fixed Speed Cassette AC

Haier AB50FH4QAA 4.0 Ton Fixed Speed Cassette AC
Haier AB50FH4QAA 4.0 Ton Fixed Speed Cassette AC
-3 %
Haier AB50FH4QAA 4.0 Ton Fixed Speed Cassette AC
Haier AB50FH4QAA 4.0 Ton Fixed Speed Cassette AC
Haier AB50FH4QAA 4.0 Ton Fixed Speed Cassette AC
  • Price: TK 216,990/-
  • special price: TK 209,500/-
  • Stock: In Stock
  • Model: AB50FH4QAA
TK 209,500/-
TK 216,990/-
Ex Tax: TK 209,500/-

Key Features

    • Brand: Haier
    • Model: AB50FH4QAA
    • Color - White
    • CAPACITY - 52K
    • EER - 3.00
    • Type - convertible
    Specification
    General Feature
    BrandHaier
    ModelAB50FH4QAA
    Air Conditioner TypeCassette
    Capacity52K
    EER3.00
    Technical Info
    Compressor Typeconvertible
    Refrigerant TypeR410A
    Power
    Power Supply3Ph/380v-415v/50Hz
    Physical Attributes
    ColorWhite
    DimensionsPackage (mm): 985/985/380
    Warranty Information
    Warranty5 Years Compressor Warranty 2 Years Spare Parts Warranty
    Description

    Haier AB50FH4QAA 4.0 Ton Fixed Speed Cassette AC

    The Haier AB50FH4QAA 4.0 Ton Fixed Speed Cassette AC is designed for larger commercial or residential spaces, offering powerful cooling and efficient performance. With its 4.0-ton cooling capacity, this air conditioning unit is ideal for cooling spacious rooms, offices, or large living areas, ensuring comfort even during hot summer days.

    This unit operates with a fixed-speed compressor, providing steady and reliable cooling without fluctuations. Its ceiling-mounted cassette design is perfect for maintaining a clean and modern look in your room, while saving valuable floor space. The sleek design and advanced technology make this air conditioner not only efficient but also stylish, blending seamlessly with any environment.

    The Haier AB50FH4QAA is designed to be energy-efficient, helping you reduce electricity consumption while keeping your space cool. It operates quietly, making it an excellent choice for places where noise reduction is important, such as offices, conference rooms, or bedrooms. The unit is also low maintenance, ensuring long-lasting durability with minimal upkeep.

    Why Choose Haier AB50FH4QAA 4.0 Ton Fixed Speed Cassette AC?

    Powerful Cooling: With a 4-ton capacity, this unit is perfect for larger spaces.
    Energy Efficient: Optimizes electricity consumption while delivering excellent cooling performance.
    Quiet Operation: Runs with minimal noise, providing a peaceful environment.
    Space-Saving Design: The ceiling-mounted cassette design maximizes floor space.
    Long-Lasting Durability: Built for durability and easy maintenance.

    Buy Haier AB50FH4QAA 4.0 Ton Fixed Speed Cassette AC from Dear IT Solution

    For customers in Bangladesh, Dear IT Solution offers the best price on the Haier AB50FH4QAA 4.0 Ton Fixed Speed Cassette AC. We guarantee high-quality products insured in Bangladesh, ensuring you get the best value for your purchase.

    Upgrade your space with Haier AB50FH4QAA 4.0 Ton Fixed Speed Cassette AC and enjoy exceptional cooling performance today!


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