User Tools

Site Tools


encoding:encoding

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
encoding:encoding [2011/02/22 16:22] skipencoding:encoding [2023/11/01 07:15] (current) – ↷ Page moved from camunda:encoding:encoding to encoding:encoding skipidar
Line 1: Line 1:
 +===== Encoding =====
  
 +Aim: converting File Name's Encoding, for that convert:
 +<code>
 +FilenameBadEncoding -> Bitstream             -> FilenameGoodEncoding
 +$ГБ!n|cЪГБ∙█        -> 01100100 01010011 ... -> Filename
 +</code>
 +
 +== Glossar ==
 +  * **Encoding** is a number of 1s and 0s, e.g. 1100001 is an "a" encoded in UTF-8
 +  * **Unicode** is a hexadecimal encoding. It contains of a table with characters and corresponding symbolic constructions like U+0061. These constructions transfaired to bits are called encoding\\
 +  * **Code Points** are encoding numbers following U+, e.g. 0061 in U+0061
 +
 +== Windows Cmd and Unicode ==
 +To display Unicode characters in Windows console correctly - switch to Unicode by typing in:
 +<code>
 +CHCP 65001
 +</code>
 +
 +
 +
 +== Links == 
 +
 +[[ http://blog.grayproductions.net/articles/understanding_m17n | Here ]] is a very very good article about encoding in general and encoding in Ruby. \\
 +[[ http://stackoverflow.com/questions/1259084/what-encoding-code-page-is-cmd-exe-using | Here ]] is some Information about switching encoding in cmd