1. This is an example of 8bit ISO 8859-1(Latin1) text.

     ¡Hola! ¿Qué tal?
     C/Gran Vía, 50, 2º
     28006 Madrid, ESPAÑA

2. This is how the text cut off the 8th bit is displayed.

     !Hola! ?Qui tal?
     C/Gran Vma, 50, 2:
     28006 Madrid, ESPAQA

3. This is how the undecoded Quoted Printable text is displayed.

     =A1Hola! =BFQu=E9 tal?
     C/Gran V=EDa, 50, 2=BA
     28006 Madrid, ESPA=D1A

                                  Quoted
8bit                             Printable  7bit(Hexadecimal)
 ¡ (inverted exclamation mark)      =A1       !  (0x21)
 ¿ (inverted question mark)         =BF       ?  (0x3F)
 º (masculine ordinal indicator)    =BA       :  (0x3A)
 é (small e with acute accent)      =E9       i  (0x69)
 í (small i with acute accent)      =ED       m  (0x6D)
 Ñ (capital N with tilde)           =D1       Q  (0x51) 

[Back]