To change the text color of a paragraph <p> to white using hexadecimal, which CSS code would you use?
<p>
p { color: rgb(0, 0, 255); }
p { color: #FFFFFF; }
p { color: red; }
p { color: #000000; }