Turkish.pm 1023 B

12345678910111213141516171819202122232425
  1. #------------------------------------------------------------------------------
  2. # File: Turkish.pm
  3. #
  4. # Description: cp1254 to Unicode
  5. #
  6. # Revisions: 2010/01/20 - P. Harvey created
  7. #
  8. # References: 1) http://unicode.org/Public/MAPPINGS/VENDORS/MICSFT/WINDOWS/CP1254.TXT
  9. #
  10. # Notes: The table omits 1-byte characters with the same values as Unicode
  11. #------------------------------------------------------------------------------
  12. use strict;
  13. %Image::ExifTool::Charset::Turkish = (
  14. 0x80 => 0x20ac, 0x82 => 0x201a, 0x83 => 0x0192, 0x84 => 0x201e,
  15. 0x85 => 0x2026, 0x86 => 0x2020, 0x87 => 0x2021, 0x88 => 0x02c6,
  16. 0x89 => 0x2030, 0x8a => 0x0160, 0x8b => 0x2039, 0x8c => 0x0152,
  17. 0x91 => 0x2018, 0x92 => 0x2019, 0x93 => 0x201c, 0x94 => 0x201d,
  18. 0x95 => 0x2022, 0x96 => 0x2013, 0x97 => 0x2014, 0x98 => 0x02dc,
  19. 0x99 => 0x2122, 0x9a => 0x0161, 0x9b => 0x203a, 0x9c => 0x0153,
  20. 0x9f => 0x0178, 0xd0 => 0x011e, 0xdd => 0x0130, 0xde => 0x015e,
  21. 0xf0 => 0x011f, 0xfd => 0x0131, 0xfe => 0x015f,
  22. );
  23. 1; # end