Template and entity_id beginning with a number

In general it is suggested that you avoid using a number as the first character in any object name. It will cause problems with ANY code base, because they all do not allow it. TBH your best option is to rename the device to start with a letter.

Anways, on to your problem…

To get this working with a number, you should use the following code:

platform: template
sensors:
  template_433_mhz_hub_status :
    ##friendly_name: "XXX"
    value_template: "{{ states.sensor['433_mhz_hub_status'].state }}"
    icon_template: >
      {% if states.sensor["433_mhz_hub_status"].state == 'online' %}
        mdi:wifi
      {% else %}
        mdi:wifi-off
      {% endif %}

The reason behind this is that in order to avoid the ‘number starting variable issue’, you need to grab the state from the object, you cannot use the method is_state with a nested key grab. you have to use one or the other. Your other option is to use is_state properly, but you may run into issues with the variable starting with a number. Anyways, here is that solution:

platform: template
sensors:
  template_433_mhz_hub_status :
    ##friendly_name: "XXX"
    value_template: "{{ states.sensor['433_mhz_hub_status'].state }}"
    icon_template: >
      {% if is_state('sensor433_mhz_hub_status', 'online') %}
        mdi:wifi
      {% else %}
        mdi:wifi-off
      {% endif %}