Find HS Code and trade information for package

Harmonized System Code Classification

Found 6 matching results (CN → US)
HS Code Official Doc Tariff Rate Origin Destination Effective Date
3923102000 Doc 55.0% CN US 2025-05-12
3923900080 Doc 58.0% CN US 2025-05-12
4202991000 Doc 58.4% CN US 2025-05-12
4202995000 Doc 62.8% CN US 2025-05-12
4201003000 Doc 57.4% CN US 2025-05-12
4201006000 Doc 57.8% CN US 2025-05-12

Package

A package is a container for code organization in many programming languages. It serves as a way to logically group related classes, interfaces, and other code elements into a single unit, promoting modularity, reusability, and maintainability. The specific implementation and terminology vary across languages, but the underlying principles remain consistent.

Purpose

Function

Packages primarily function as a means of grouping and controlling access to code. They achieve this through:

Usage Scenarios

Common Types (Examples by Language)


import java.util.ArrayList;
import java.util.List;

public class PackageClassification {

    public static void main(String[] args) {
        // Declared Goods: package
        List<String> relevantHsCodes = new ArrayList<>();

        // Search for relevant HS codes within the reference material.
        // Based on the provided reference, "package" can relate to several HS codes depending on the material and specific use.

        // HS Code 3923102000: Articles for the conveyance or packing of goods, of plastics; stoppers, lids, caps and other closures, of plastics: Boxes, cases, crates and similar articles: Specially shaped or fitted for the conveyance or packing of semiconductor wafers, masks or reticles of subheadings 3923.10 or 8486.90
        relevantHsCodes.add("3923102000");

        // HS Code 3923900080: Articles for the conveyance or packing of goods, of plastics; stoppers, lids, caps and other closures, of plastics: Other Other
        relevantHsCodes.add("3923900080");

        // HS Code 4202991000: Trunks, suitcases, vanity cases, attache cases, briefcases, school satchels, spectacle cases, binocular cases, camera cases, musical instrument cases, gun cases, holsters and similar containers; traveling bags, insulated food or beverage bags, toiletry bags, knapsacks and backpacks, handbags, shopping bags, wallets, purses, map cases, cigarette cases, tobacco pouches, tool bags, sports bags, bottle cases, jewelry boxes, powder cases, cutlery cases and similar containers, of leather or of composition leather, of sheeting of plastics, of textile materials, of vulcanized fiber or of paperboard, or wholly or mainly covered with such materials or with paper: Other: Other: Of materials (other than leather, composition leather, sheeting of plastics, textile materials, vulcanized fiber or paperboard) wholly or mainly covered with paper: Of plastics
        relevantHsCodes.add("4202991000");

        // HS Code 4202995000: Trunks, suitcases, vanity cases, attache cases, briefcases, school satchels, spectacle cases, binocular cases, camera cases, musical instrument cases, gun cases, holsters and similar containers; traveling bags, insulated food or beverage bags, toiletry bags, knapsacks and backpacks, handbags, shopping bags, wallets, purses, map cases, cigarette cases, tobacco pouches, tool bags, sports bags, bottle cases, jewelry boxes, powder cases, cutlery cases and similar containers, of leather or of composition leather, of sheeting of plastics, of textile materials, of vulcanized fiber or of paperboard, or wholly or mainly covered with such materials or with paper: Other: Other: Of materials (other than leather, composition leather, sheeting of plastics, textile materials, vulcanized fiber or paperboard) wholly or mainly covered with paper: Other
        relevantHsCodes.add("4202995000");

        if (relevantHsCodes.size() < 3) {
            System.out.println("According to the provided reference material, the HS code options related to 'package' are limited, with only the following " + relevantHsCodes.size() + " found.");
        }

        for (String hsCode : relevantHsCodes) {
            System.out.println("
HS Code: " + hsCode);
            if (hsCode.equals("3923102000")) {
                System.out.println("  Chapter 39: Plastics and articles thereof.");
                System.out.println("  Heading 2310: Articles for the conveyance or packing of goods, of plastics; stoppers, lids, caps and other closures, of plastics.");
                System.out.println("  Subheading 2000: Boxes, cases, crates and similar articles: Specially shaped or fitted for the conveyance or packing of semiconductor wafers, masks or reticles of subheadings 3923.10 or 8486.90");
            } else if (hsCode.equals("3923900080")) {
                System.out.println("  Chapter 39: Plastics and articles thereof.");
                System.out.println("  Heading 2390: Articles for the conveyance or packing of goods, of plastics; stoppers, lids, caps and other closures, of plastics.");
                System.out.println("  Subheading 0080: Other Other");
            } else if (hsCode.equals("4202991000")) {
                System.out.println("  Chapter 42: Articles of leather and of composition leather, travel goods, handbags and the like; articles of plastics, sheeting, tarpaulins, sailcloth, tents, awnings, parasols, sunshades, umbrellas, walking sticks and seat-sticks; parts and accessories thereof.");
                System.out.println("  Heading 0299: Other");
                System.out.println("  Subheading 1000: Of materials (other than leather, composition leather, sheeting of plastics, textile materials, vulcanized fiber or paperboard) wholly or mainly covered with paper: Of plastics");
            } else if (hsCode.equals("4202995000")) {
                System.out.println("  Chapter 42: Articles of leather and of composition leather, travel goods, handbags and the like; articles of plastics, sheeting, tarpaulins, sailcloth, tents, awnings, parasols, sunshades, umbrellas, walking sticks and seat-sticks; parts and accessories thereof.");
                System.out.println("  Heading 0299: Other");
                System.out.println("  Subheading 5000: Of materials (other than leather, composition leather, sheeting of plastics, textile materials, vulcanized fiber or paperboard) wholly or mainly covered with paper: Other");
            }
        }

        System.out.println("
Proactive Suggestions:");
        System.out.println("Regarding HS codes 3923102000 and 3923900080, the material is plastics. Regarding HS codes 4202991000 and 4202995000, the material may be leather, composition leather, sheeting of plastics, textile materials, vulcanized fiber or paperboard, or wholly or mainly covered with such materials or with paper.");
    }
}