None Printable Character in C#

  • Thread starter Thread starter saqsaqPK
  • Start date Start date
S

saqsaqPK

Guest
Please Tell me about none printable character .

What is Printable Character ?

how to print none Printable Character in C# Console Application.


for Example ENQ , ETB ACK STX ETX , EOT ETC...

string ENQ = char.ConvertFromUtf32(5); //Enquiry Character
string ETB = char.ConvertFromUtf32(23); //End of trans block ,
string ACK = char.ConvertFromUtf32(6); // Acknowledge
string STX = char.ConvertFromUtf32(2); // Start of Text
string ETX = char.ConvertFromUtf32(3); // END of Text
string EOT = char.ConvertFromUtf32(4); // END of Transmittion
string CR = char.ConvertFromUtf32(13); // Carriage return
string LF = char.ConvertFromUtf32(13); // New Line ,



For Exaple ACK = 6 , ENQ = 5

Continue reading...
 
Back
Top