Which is the most easy console to create an emulator of it?
I found that Chip-8 is a good starting point. It's relatively simple with on/off graphics, only one fixed sound and under 40 opcodes.
I found Cowgod's Chip-8 Technical Reference to be a great resource.
Where I can find some good resources to build it?
You need to pick your target system and then research for the technical information about it. This is much easier if you choose a popular system, such as the Gameboy (mentioned by Jack).
Which is the best language to build a emulator?
C/C++ is great because you are close to the hardware so can get the best performance. There have been emulators written in Assembly before, but I wouldn't recommend it (especially if you're just starting out).
In saying that though, there have been emulators written in JavaScript that have acceptable frame rates.
I'd choose a language you're most comfortable, and keep in mind anything closer to the metal will theoretically achieve better performance.
I wrote some blog posts that may help too: