# CharsetConvert **Repository Path**: qqclient/CharsetConvert ## Basic Information - **Project Name**: CharsetConvert - **Description**: A java implement charset convert tool .Such as hex to utf-8, hex to gbk, utf-8 to hex and gbk to hex.Suitable for use in a network, serial debugging process. - **Primary Language**: Unknown - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 2 - **Created**: 2023-12-19 - **Last Updated**: 2023-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # CharsetConvert --- It's a simple java tool for charset convert.Provides the following modes. - GBK String to HEX code - UTF-8 String to HEX code - HEX code to GBK String - HEX code to UTF-8 String ##Step1 Clone and import this project into Eclipse. ##Step2 Open a class which you want to use.Then `Run As` it for `Java Application`. ##Step3 Open Eclipse console,input the text which you want to convert.Then press Enter, the convert will show. > Note: 1)The HEX code format must be liked `11 22 AA BB CC`, not use like `0x11 0x22 0xAA 0xBB 0xCC` this style.