Help for this page

Select Code to Download


  1. or download this
        my $unicode_character_hexadecimal_string = '0x20ac';
    
  2. or download this
        my $unicode_codepoint_integer
            = eval $unicode_character_hexadecimal_string;
    
  3. or download this
        '0xE2 0x82 0xAC'
    
  4. or download this
        'E2 82 AC'
    
  5. or download this
        '0x62 0x02 0x2C'
    
  6. or download this
        '62 02 2C'
    
  7. or download this
        '11100010 10000010 10101100'
    
  8. or download this
        '01100010 00000010 00101100'