1个汉字是多少字节?1个英文字母、标点符号是多少字节?

本文探讨了汉字、英文字母和标点符号在计算机中所占用的字节数,详细解释了不同字符编码(如ASCII和Unicode)下每个字符的存储大小。
package com.***;

import java.io.UnsupportedEncodingException;

public class Main {
	
	public static void main(String[] args) throws UnsupportedEncodingException {
		System.out.println("---------------utf-8开始---------------");
		String a = "雨";
		int numa = a.getBytes("utf-8").length; 
		System.out.println("1个汉字等于几个字节:"+numa);
		String b = "a";
		int numb = b.getBytes("utf-8").length; 
		System.out.println("1个英文字母等于几个字节:"+numb);
		String c = ",";
		int numc = c.getBytes("utf-8").length; 
		System.out.println("1个中文标点符号等于几个字节:"+numc);
		String d = ",";
		int numd = d.getBytes("utf-8").length; 
		System.out.println("1个英文标点符号等于几个字节:"+numd);
		System.out.println("---------------GBK开始---------------");
		String e = "雨";
		int nume = e.getBytes("GBK").length; 
		System.out.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

易天海

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值