Menu
Your Cart

A4TECH FBK36C AS Wireless Keyboard – Compact & Rechargeable

A4TECH FBK36C AS Wireless Keyboard – Compact & Rechargeable
A4TECH FBK36C AS Wireless Keyboard – Compact & Rechargeable
A4TECH FBK36C AS Wireless Keyboard – Compact & Rechargeable
-10 %
A4TECH FBK36C AS Wireless Keyboard – Compact & Rechargeable
A4TECH FBK36C AS Wireless Keyboard – Compact & Rechargeable
A4TECH FBK36C AS Wireless Keyboard – Compact & Rechargeable
A4TECH FBK36C AS Wireless Keyboard – Compact & Rechargeable
  • Price: TK 2,420/-
  • special price: TK 2,175/-
  • Stock: In Stock
  • Model: fbk36c
TK 2,175/-
TK 2,420/-
Ex Tax: TK 2,175/-

Key Features

    • Model: FBK36C AS
    • Dual Connectivity Mode
    • Quiet Key Keyboard, Compact & Trendy
    • Operation Range: 5~10 m
    • Operating System Swap
    Specification
    General Feature
    BrandA4tech
    Modelfbk36c
    TypeMembrane
    InterfaceBluetooth / 2.4GHz
    Others Multi-Device: Bluetooth x 2, 2.4G x 1 Operation Range: 5~10 m Report Rate: 125 Hz Character: Laser Engraving Multi-Device: Bluetooth x 2, 2.4G x 1 Receiver: Nano Receiver
    Physical Attributes
    Number Of Keys104
    ColorBlack
    Dimensions395*138*27mm
    Backlit OptionNo
    Warranty Information
    Warranty01 Year
    Description

    A4TECH FBK36C AS Wireless Keyboard – Compact & Rechargeable

    The A4TECH FBK36C AS Wireless Keyboard is a sleek and compact keyboard designed for smooth and efficient typing. Featuring dual-mode connectivity, it supports Bluetooth and 2.4GHz wireless, allowing seamless switching between multiple devices. Whether you're using a laptop, desktop, tablet, or smartphone, this keyboard ensures a stable and responsive connection.

    Its rechargeable battery eliminates the need for frequent battery replacements, offering extended usage time with an energy-saving mode for optimized power efficiency. The keyboard's ergonomic low-profile keys provide a comfortable and silent typing experience, making it ideal for both work and leisure.

    Designed for portability, the A4TECH FBK36C AS is lightweight and compact, making it easy to carry in a bag for on-the-go use. It also supports multi-device pairing, allowing effortless switching between different devices with a single press. The durable construction ensures long-term reliability, while the Bangla layout support (if applicable) enhances usability for bilingual users.


    Buying Suggestions from Dear IT Solution

    Purchase the A4TECH FBK36C AS Wireless Keyboard – Compact & Rechargeable from Dear IT Solution at the best price in Bangladesh. As a best quality product insured in Bangladesh, this keyboard delivers outstanding performance and convenience. Order now and enjoy a premium wireless typing experience

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