I 9: Fill & Download for Free

GET FORM

Download the form

How to Edit The I 9 and make a signature Online

Start on editing, signing and sharing your I 9 online with the help of these easy steps:

  • Push the Get Form or Get Form Now button on the current page to direct to the PDF editor.
  • Wait for a moment before the I 9 is loaded
  • Use the tools in the top toolbar to edit the file, and the edits will be saved automatically
  • Download your completed file.
Get Form

Download the form

The best-rated Tool to Edit and Sign the I 9

Start editing a I 9 in a second

Get Form

Download the form

A quick tutorial on editing I 9 Online

It has become really simple recently to edit your PDF files online, and CocoDoc is the best PDF editor for you to do some editing to your file and save it. Follow our simple tutorial to try it!

  • Click the Get Form or Get Form Now button on the current page to start modifying your PDF
  • Add, change or delete your text using the editing tools on the tool pane above.
  • Affter altering your content, put on the date and draw a signature to finish it.
  • Go over it agian your form before you click and download it

How to add a signature on your I 9

Though most people are adapted to signing paper documents using a pen, electronic signatures are becoming more regular, follow these steps to sign PDF online!

  • Click the Get Form or Get Form Now button to begin editing on I 9 in CocoDoc PDF editor.
  • Click on the Sign tool in the toolbar on the top
  • A window will pop up, click Add new signature button and you'll be given three choices—Type, Draw, and Upload. Once you're done, click the Save button.
  • Drag, resize and settle the signature inside your PDF file

How to add a textbox on your I 9

If you have the need to add a text box on your PDF so you can customize your special content, do some easy steps to carry it throuth.

  • Open the PDF file in CocoDoc PDF editor.
  • Click Text Box on the top toolbar and move your mouse to position it wherever you want to put it.
  • Write in the text you need to insert. After you’ve typed the text, you can utilize the text editing tools to resize, color or bold the text.
  • When you're done, click OK to save it. If you’re not happy with the text, click on the trash can icon to delete it and start afresh.

A quick guide to Edit Your I 9 on G Suite

If you are looking about for a solution for PDF editing on G suite, CocoDoc PDF editor is a recommendable tool that can be used directly from Google Drive to create or edit files.

  • Find CocoDoc PDF editor and install the add-on for google drive.
  • Right-click on a PDF document in your Google Drive and select Open With.
  • Select CocoDoc PDF on the popup list to open your file with and allow CocoDoc to access your google account.
  • Modify PDF documents, adding text, images, editing existing text, highlight important part, polish the text up in CocoDoc PDF editor before pushing the Download button.

PDF Editor FAQ

What is the shortest code you can write for building a basic Sudoku Solver in one of the most popular programming languages (Java, C, C++, Python, Visual Basic .NET, JavaScript, C#, Go, …)?

I could probably make a smaller solver in C, but this is small enough for tonight.#include<stdio.h> int s[82]; int solve(unsigned i) {  unsigned ok=0x3FE;  while(s[i])i++;  if(i==81)return 1;  for(int j=0,r=i-i%9,b=((i/3)%3)*3+(i/27)*27;j<9;j++)  ok&=~((1u<<s[(i+j*9)%81])|(1u<<s[r+j])|(1u<<s[b+(j%3)+9*(j/3)]));  for(int j=1;j<=9;j++)  if(ok&(1u<<j)){  s[i]=j;  if(solve(i+1))  return 1;  }  s[i]=0;  return 0; }  int main() {  int i=0,c;  while ((c=getchar())!=EOF&&i<81) {  if (c>='0'&&c<='9') s[i++]=c-'0';  if (c=='.') s[i++]=0;  }  if (solve(0))  for (i=0;i<81;i++)  printf("%2d%c",s[i],i%9==8?'\n':' ');  else  puts("No solution"); } This weighs in at 575 characters, counting whitespace, newlines, etc. It is still fairly verbose. You could probably squeeze another 50 - 75 characters out of it easily.I trimmed it down a bit—373 characters, even with the generous “No solution” message at the end. It could be trimmed further by removing that message and removing some white space.#include<stdio.h> int p[109],i,c; int s(int k){  while(p[++k]);  int o=1,j=-1;  while(++j<9)o|=1<<p[(k+j*9)%81]|1<<p[k-k%9+j]|1<<p[k-k%27+k%9-k%3+j%3+j/3*9];  while(k-81&&(p[k]=j--)&&(o>>j&2||!s(k)));  return++j; } int main(){  for(;i-81&&(c=getchar())-EOF;i+=c>' ')p[i]='0'<c?c-'0':0;  for(s(i=-1)||(*p=0,puts("No solution"));p[++i];printf("%d%c",p[i],i%9-8?' ':'\n')); } } 

In business, after being fired, did you ever leave a "present" for your boss in his/her office? If so, what was it?

In 2003 I was laid off. My boss was a terrible manager and a worse human being, and being let go ultimately turned out to be one of the best things that happened to me professionally, but at the time it stung. After the meeting with HR to talk about COBRA, severance, etc., the HR director asked me if I wanted to speak to my boss one last time. I said that I did, and the HR director called her over. In front of the HR director, I thanked my boss for the opportunity, gave her a hug, and wished her the best.Fast forward 6 months and I’ve found a new job (at a company where I still work to this day), but when it comes time to do my I-9 employment verification, I can’t find my social security card. Now, I wasn’t born in the United States, I was a citizen through my mother’s naturalization, but I had never gotten a US passport or applied for a certificate of citizenship. That meant that I couldn’t get my social security card replaced without first getting one of those things, nor did I have any other documents proving that I was eligible to work in the United States. This was obviously a big problem, but I-9 verification doesn’t require original documents, photocopies are acceptable. And who had a copy of my social security card on file but my old employer? I ended up calling the HR director there and explaining my situation. She agreed to make me a copy of my social security card and I could come by the office and pick it up. I did, gave it to my new employer, and began my new job.The lesson that I learned (thankfully the easy way and not the hard way) was to never burn bridges. Even though it would have felt good to tell my old boss what I thought of her, I doubt that they would have done me any favors had I done that, and I would have lost out on a job offer that has led to 16 years (and counting) of very happy employment for me. And yes, I did get a passport and replace my social security card, but it took a few months.

In a certain language, HUNIKA is coded as 93223 and TARITA is coded as 212127. What will be the code of NIVEDITA in this language? (answer is 1529319). What is the logic?

Very Good !H = 8U = 21N = 14I = 9K = 11A = 1T = 20A = 1R = 18I = 9T = 20A = 1I think there should be no problem till now,Now for next step, just add first and last number, then second and second last number and so on till the middle number so for HUNIKA we haveHUNIKA = 8+1 , 21+11, 14+9 = 93223And TARITA becomesTARITA = 20+1, 1+20, 18+9 = 212127And now finally NIVEDITA becomes,N = 14I = 9V = 22E = 5D = 4I = 9T = 20A = 1NIVEDITA becomes,NIVEDITA = 14+1, 9+20, 22+9, 5+4 = 1529319

Comments from Our Customers

While running a digital business I often need to convert my Docx files to PDF and vice-versa quickly it's my goto service for that as the process is super easy.

Justin Miller