Assembler. You must know how it works, no matter what you are programming, but it is especially important for embedded systems. Nobody save hobbyists write whole programs in assembler any longer, because it makes the code completely non-portable and harder to maintain. At the rate the new MCUs are spitted out on the market, assembler turns less and less relevant as the main language. Yet, you must understand how your C code is translated to assembler, and you must be able to write inline assembler snippets in your code, or you will not be able to work as a professional programmer of embedded systems.
C. For the moment, this is by far the best choise for any hardware-related programming. The language is widespread and all compilers, tools and software stacks are written in C. This is also one of the very few languages where most embedded compilers actually follow the standard.
Ada. Far less common than C, but somewhat relevant. Used mainly by avionics and various other safety-critical industries, though the number of compilers and tools are limited.
C++. The language is used in embedded systems, but I have yet to see an embedded C++ compiler following the standard. Most of the things making C++ different from C are entirely unsuitable for embedded systems, so there aren't really too many reasons left to use C++. It should be noted that both C and C++ are horrible, ancient languages. People who propagate for C++ because it is more modern than C, are just trying to make you pick their own favourite dinosaur. With the lack of tools and standard compilers, C++ isn't really a good choise for embedded systems.
C, Ada and C++ have the advantages that they nowadays have safe subset that are industry standard. MISRA-C and SPARK are widely recognized, and recently there is also a MISRA-C++. If you wish to do professional programming, you will need to use one of these safe subsets.
Languages not mentioned above are definitely a complete waste of your time, either because they are going obsolete (Fortran, Pascal, Modula-2 etc) or because they are unsuitable for embedded systems (Java, C#, Python etc).