• 大小: 3.66KB
    文件类型: .cs
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 编码  

资源简介

utf-8编码和解码

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Web;
using System.Security.Cryptography;

namespace UTF_8Code
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        string UnicodeStr;
        string codestyle;
        string tempStr;
        private void btnCode_Click(object sender EventArgs e)
        {
            tempStr = string.Empty;
            if (txtcodeword.Text != string.Empty)
            {
                if (rbtnUTF8.Checked)
                {
                    codestyle = “UTf-8“;
                }
                if (r

评论

共有 条评论