ByteScout QR Code SDK - C# - Create QR Code with Unicode Value - ByteScout

ByteScout QR Code SDK – C# – Create QR Code with Unicode Value

  • Home
  • /
  • Articles
  • /
  • ByteScout QR Code SDK – C# – Create QR Code with Unicode Value

How to create QR code with unicode value in C# with ByteScout QR Code

This code in C# shows how to create QR code with unicode value with this how to tutorial

On this page you will learn from code samples for programming in C#.Writing of the code to create QR code with unicode value in C# can be done by developers of any level using ByteScout QR Code. ByteScout QR Code is QR Code barcode generator SDK with tunnable quality and features like QR Code embedded logo or images. Supports batch generation and specialized features like encoding of vCard and other structures inside QR Code barcodes and you can use it to create QR code with unicode value with C#.

The SDK samples like this one below explain how to quickly make your application do create QR code with unicode value in C# with the help of ByteScout QR Code. Follow the instructions from the scratch to work and copy the C# code. Code testing will allow the function to be tested and work properly with your data.

Our website provides trial version of ByteScout QR Code for free. It also includes documentation and source code samples.

On-demand (REST Web API) version:
 Web API (on-demand version)

On-premise offline SDK for Windows:
 60 Day Free Trial (on-premise)

Program.cs
      
using System.Text; using System.Diagnostics; using Bytescout.BarCode; namespace UnicodeValue { class Program { static void Main(string[] args) { // Create and activate QRCode instance using (QRCode barcode = new QRCode("demo", "demo")) { // Set the character encoding to UTF8 barcode.CharacterEncoding = Encoding.UTF8; // Set Unicode barcode value barcode.Value = "??"; // Show barcode caption (optional) barcode.DrawCaption = true; // Save barcode image to file barcode.SaveImage("result.png"); } // Open the image in default image viewer (for the demo purpose) Process.Start("result.png"); } } }

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout QR Code Home Page

Explore ByteScout QR Code Documentation

Explore Samples

Sign Up for ByteScout QR Code Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

VIDEO

ON-PREMISE OFFLINE SDK

60 Day Free Trial or Visit ByteScout QR Code Home Page

Explore ByteScout QR Code Documentation

Explore Samples

Sign Up for ByteScout QR Code Online Training

ON-DEMAND REST WEB API

Get Your API Key

Explore Web API Docs

Explore Web API Samples

Tutorials:

prev
next