I am trying to achieve the following look in the time format:

I have for now several issues,
First is that the month and year are not displayed at all,
I use <?php the_date('D'); ?> <?php the_date('M'); ?> <?php the_date('Y'); ?> for start and only the day is shown,
Second - Are there WP functions I can use to
- Get the month in 3 cap letters?
- Get only 2 last digits of year?
Or I have to use my own PHP functions for that?
Also, it must be hard-coded in the theme, because otherwise it will mess up the design.
Update
I used <?php echo get_the_date('M'); ?> and I got all the times, but isn't the_date meant exactly for that?