Misplaced Pages

Resident Identity Card: Difference between revisions

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.
Browse history interactively← Previous editNext edit →Content deleted Content addedVisualWikitext
Revision as of 12:06, 9 June 2009 editBenlisquare (talk | contribs)Autopatrolled, Extended confirmed users, File movers, Pending changes reviewers, Rollbackers48,193 editsm moved People's Republic of China Resident Identity Card to Resident Identity Card over redirect: rev move - not the official name. Do not redirect to fit a template - use redirects instead.← Previous edit Revision as of 02:07, 27 June 2009 edit undoBenlisquare (talk | contribs)Autopatrolled, Extended confirmed users, File movers, Pending changes reviewers, Rollbackers48,193 edits Identity card numberNext edit →
Line 54: Line 54:
*'''Date of Birth''' in the form YYYY-MM-DD. *'''Date of Birth''' in the form YYYY-MM-DD.
*'''Order code''' is the code used to disambiguate people with the same date of birth and address code. Men are assigned to odd numbers, women assigned to even numbers. *'''Order code''' is the code used to disambiguate people with the same date of birth and address code. Men are assigned to odd numbers, women assigned to even numbers.
*The '''Checksum''' is the final digit, which confirms the validity of the ID number from the first 17 digits, utilizing '''ISO 7064:1983, ] 11-2'''. The checksum is obtained by: *The '''Checksum''' is the final digit, which ] of the ID number from the first 17 digits, utilizing '''ISO 7064:1983, ] 11-2'''. The checksum is obtained by:
#Marking the Identity card number right-to-left <math>a_1 , a_2 , \cdots , a_{18}</math>,<math>a_1</math> for the parity-check codes; #Marking the Identity card number right-to-left <math>a_1 , a_2 , \cdots , a_{18}</math>,<math>a_1</math> for the parity-check codes;
#Weight coefficient calculation <math>W_i=2^{i-1}\ \bmod \ {11}</math>; #Weight coefficient calculation <math>W_i=2^{i-1}\ \bmod \ {11}</math>;

Revision as of 02:07, 27 June 2009

Second-generation identification card

Jumin Shenfenzheng (Chinese: 居民身份证; Hanyu Pinyin: Jūmín Shēnfènzhèng), or the Chinese ID card, is the official form of personal identification in the People's Republic of China.

History

Prior to 1984, citizens within the People's Republic of China were not required to obtain or carry identification in public. On April 6, 1984, the State Council of the People's Republic of China passed the "Identity Card Bill", commencing the process of gradual introduction of personal identification, in the footsteps of many developed countries at the time. The first generation identification cards were single paged cards made of polyester film.

On September 6, 1985, the National People's Congress Standing Committee passed the "Identity Card Bill of the People's Republic of China", which regulated that all citizens over the age of 16 apply for identification cards. At that point, the Ministry of Public Security of the People's Republic of China created a unified authority responsible for the issuing and management of the ID cards. From 2003, it is reported that a total of 1.14 billion ID cards have been created in China, for a total of 960,000,000 holders. However, as a result of technological development and certain techniques made available to the civilian population, the existing cards became relatively easier to counterfeit, opening the increasing threat of false identification.

On June 28, 2003, the National People's Congress passed the new "Resident Identity Card Law", which expanded the scope of documents issued, and allowed soldiers in the People's Liberation Army and members of the People's Armed Police to apply for special identity cards. The law also established the use of newer, second-generation cards, which are machine-readable and more difficult to forge.

Contents

The identity card contains basic information regarding the individual, such as the following:

Information stored in the identity database for biometric ID cards documents information such as work history, educational background, religion, ethnicity, police record, medical insurance status, landlord's phone number and personal reproductive history.

The dimensions of the second-generation cards are 85.725 mm×53.975 mm×0.900 mm, and the identity photo is sized at 358x441 pixels (width by height), printed at a resolution of 350dpi on RGB using 24-bit True Color, prepared using JPEG compression techniques in line with the requirements of ISO DIS 10918-1. The final image appears as a 26 mm × 32 mm portrait box in the top-right hand corner.

Identity card number

From October 1, 1999, the PRC State Council approved the establishment of a citizen identification number system, and currently consists of an 18-digit code.

1 1 0 1 0 2 Y Y Y Y M M D D 8 8 8 X
Address code Date of Birth code Order code Checksum
  • Address code refers to the resident's location, where administrative divisions (including cities, banners, and districts) have their own specific codes. (For example, the code for Xicheng District in Beijing is 110102.)
  • Date of Birth in the form YYYY-MM-DD.
  • Order code is the code used to disambiguate people with the same date of birth and address code. Men are assigned to odd numbers, women assigned to even numbers.
  • The Checksum is the final digit, which confirms the validity of the ID number from the first 17 digits, utilizing ISO 7064:1983, MOD 11-2. The checksum is obtained by:
  1. Marking the Identity card number right-to-left a 1 , a 2 , , a 18 {\displaystyle a_{1},a_{2},\cdots ,a_{18}} a 1 {\displaystyle a_{1}} for the parity-check codes;
  2. Weight coefficient calculation W i = 2 i 1   mod   11 {\displaystyle W_{i}=2^{i-1}\ {\bmod {\ }}{11}}
i 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1
Wi 7 9 10 5 8 4 2 1 6 3 7 9 10 5 8 4 2 1
  1. Calculation of S = i = 2 18 a i W i {\displaystyle S=\sum _{i=2}^{18}a_{i}\cdot W_{i}}
  2. a 1 = ( 12 ( S   mod 1 1 ) ) mod 1 1 {\displaystyle a_{1}=(12-(S\ {\bmod {1}}1)){\bmod {1}}1}
Checksum derivation process in Visual Basic Checksum derivation process in Visual Basic
Dim a, w, s ,id
 msgbox "This procedure for checking the identity card number and or-bit",vbokonly+vbinformation,"identity check procedures"
 id=inputbox("Enter the ID number 15 or 18 before the identity card numbers of 17 or","ID","11010519491231002")
 if vartype(id)<>0 then
'Test the legality of the importation of numbers 
  l=0
  do until l=1
   l=1
   p=""
   if len(id) <>17 then
     if len(id) <> 15 then
      l=0
      p="enter the median is not correct, please enter 15 or 17-digit."
     end if
   end if
   for i = 1 to len(id)
    a=mid(id,i,1)
    if asc(a)<asc("0") or asc(a)>asc("9") then
     l=0
     p=p  & vbCrLf & vbCrLf & "Please enter the number, do not include the characters“" & a & "”。"
     exit for
    end if
   next
   if l=0 then
    id=inputbox("illegal input" & vbCrLf  & vbCrLf & p,"input error",id)
   end if
  loop
'Will be number 15 or 17 places to number
  if len(id)=15 then
   id = left(id,6) & "19" & right(id, 9)
  end if
'Number 17 for the calculation of parity-check codes
  for i = 2 to 18
   a = mid(id,19-i,1)
   w=2^(i-1) mod 11
   s=a * w + s
  next 
  s =(12 - ( s mod 11) )mod 11
  if s=10 then s="X"
'After checking the number of output
  inputbox  "the identity card number of the parity-check codes for the“" & s & "”" & vbcrlf & vbcrlf & "by checking the ID card numbers are as follows:","Check completed", id & s
 end if

Usage of identification

Citizens within the People's Republic of China must carry identification in public at all times, compulsory from the age of 16. The identity card is the only acceptable legal document to obtain resident permit, employment, open bank accounts, obtain passport, driver licence, application for tertiary education and technical colleges, security checkpoints in domestic terminals of Chinese airports. Documentation is also required for marriages, household registrations and legal cases.

Recently, there have been more services that require the display of identification cards, such as at Internet cafes and certain stores.

Police are required to inspect identification documents where:

  • Criminal suspects need to be identified;
  • To inspect those related to personnel involved in an incident;
  • In the occurrence of a serious security emergency, and there is a requirement to obtain the identity of the a person at the scene;
  • If the law requires so during a case.

Anti-counterfeiting measures

Hidden text of "JMSFZ" found within the texture of the second-generation ID cards

First generation ID card

Polyester plastic film, which utilizes an anti-counterfeit laser logo.

Second generation ID card

Second-generation ID cards contain a non-contact IC chip card, a directional holographic "Great Wall" image, an anti-counterfeiting film made of green multi-layer polyester (PETG) composite material, optical variable optical storage containing the text "中国CHINA" situated on the card, and a microfilm string generating the letters "JMSFZ" (initials for the Pinyin of "Jumin Shenfenzheng"), and a "Great Wall" logo revealed by ultraviolet light.

See also

References

  1. 1984年4月6日 居民身份证制度施行
  2. "改革开放30年专题第48期:居民身份证". 《新京报》. Retrieved 2008-10-12.
  3. 中华人民共和国居民身份证条例(失效)【1985-09-06】
  4. 关于《中华人民共和国公民身份证法(草案)》的说明 - news.sina.com
  5. 中华人民共和国居民身份证法 - www.gov.cn
  6. ^ 第二代居民身份证的防伪特征
  7. 宝鸡 咸阳 二代身份证暂停办理(图)
  8. 男子借身份证上网吧被拘3日

External links

National identity cards
Africa
Asia
Europe
European
Economic Area

Schengen Area
Other Europe
North America
South America
Non-biometric identity cards () are indicated in italics.
Category: